12 lines
267 B
C
Raw Normal View History

2020-10-28 19:40:08 +01:00
#ifndef _MBUSCOMM_H_
#define _MBUSCOMM_H_
2020-11-02 15:04:53 +01:00
#include <main.h>
2020-10-28 19:40:08 +01:00
#include <stdint.h>
void mbusCommRequest(uint8_t cmd, uint8_t addr);
2020-11-02 15:04:53 +01:00
void mbusCommTxCpltCallback(UART_HandleTypeDef *huart);
2020-11-02 15:41:07 +01:00
void mbusCommRxCpltCallback(UART_HandleTypeDef *huart);
2020-10-28 19:40:08 +01:00
#endif // _MBUSCOMM_H_