nbus_app.h 384 B

12345678910111213141516171819202122
  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. #include "app_bridge.h"
  13. void nbus_init(Peripheral_typeDef *periph, nBusAppInterface_t *interface);
  14. void nbus_init_app(void *hw_interface, void *hw_config);
  15. void nbus_stack(void);
  16. #endif