nbus_impl.h 491 B

123456789101112131415161718
  1. /**
  2. * @file nbus_impl.h
  3. *
  4. * @brief Zakladna implementacia prikazov nBus protokolu.
  5. *
  6. */
  7. #ifndef __NBUS_IMPL_H__
  8. #define __NBUS_IMPL_H__
  9. #include "nbus_types.h"
  10. #include "nbus_cmd.h"
  11. //nBusCommandType_t get_request_type();
  12. nBus_functionCode_t* nbus_unicastToSensor(nBus_TypeDef *nbus, nBus_functionCode_t *code);
  13. nBus_functionCode_t* nbus_unicastToModule(nBus_TypeDef *nBus, nBus_functionCode_t *code);
  14. void nbus_broadcast(nBus_TypeDef *nBus, nBusCommandType_t request_type);
  15. #endif