| 1234567891011121314151617181920212223 |
- /**
- * @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"
- void setErrorResponse(nBus_TypeDef *nbus, uint8_t code);
- //nBusCommandType_t get_request_type();
- void nbus_unicastToSensorGet(nBus_TypeDef *nbus);
- void nbus_unicastToModuleGet(nBus_TypeDef *nBus);
- void nbus_unicastToSensorSet(nBus_TypeDef *nbus);
- void nbus_unicastToModuleSet(nBus_TypeDef *nBus);
- void nbus_broadcast(nBus_TypeDef *nBus, nBusCommandType_t request_type);
- #endif
|