| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * @file nbus_app.h
- *
- * @brief Zakladna kostra nBus protokolu.
- *
- */
- #ifndef __NBUS_APP_H__
- #define __NBUS_APP_H__
- #include "nbus_types.h"
- #if MODULE_SLAVE == 1
- #include "nbus_slave.h"
- #endif
- #if MODULE_MASTER == 1
- #include "nbus_master_module.h"
- #endif
- #include "nbus_cmd.h"
- //#include "app_bridge.h"
- //#include "nbus_memory.h"
- #include "one_wire.h"
- #include "memory_ec20.h"
- void nbus_init(Peripheral_typeDef *periph, nBusAppInterface_t *interface);
- void nbus_init_app(void *hw_interface, void *hw_config);
- void nbus_stack(void);
- void nbus_init_memory_driver(nBus_MemoryDriver *memDriver, uint16_t capacity);
- #endif
|