nbus_app.h 272 B

1234567891011121314151617181920
  1. /**
  2. * @file nbus_app.h
  3. *
  4. * @brief Zakladna kostra nBus protokolu.
  5. *
  6. */
  7. #ifndef __NBUS_APP_H__
  8. #define __NBUS_APP_H__
  9. #include "nbus_types.h"
  10. #include "nbus_impl.h"
  11. #include "nbus_cmd.h"
  12. void nbus_init(Peripheral_typeDef *periph);
  13. void nbus_stack(void);
  14. #endif