| 1234567891011121314151617 |
- /**
- * @file nbus_impl.h
- *
- * @brief Zakladna implementacia prikazov nBus protokolu.
- *
- */
- #ifndef __NBUS_IMPL_H__
- #define __NBUS_IMPL_H__
- #include "nbus_types.h"
- #include "nbus_cmd.h"
- //nBusCommandType_t get_request_type();
- nBus_functionCode_t* nbus_unicastToModule(nBus_TypeDef *nBus, nBus_functionCode_t *code);
- void nbus_broadcast(nBus_TypeDef *nBus, nBusCommandType_t request_type);
- #endif
|