2024-12-06 09:38:25 +00:00
|
|
|
|
|
|
|
#ifndef BL_COMM_H_
|
|
|
|
#define BL_COMM_H_
|
|
|
|
|
|
|
|
#include "comm_types.h"
|
2024-12-09 09:53:43 +00:00
|
|
|
#include "uart_dev.h"
|
2024-12-06 09:38:25 +00:00
|
|
|
|
|
|
|
|
2024-12-12 10:00:30 +00:00
|
|
|
#define buffLen 100
|
|
|
|
extern uint8_t rs485_buff[buffLen];
|
|
|
|
|
2024-12-09 09:53:43 +00:00
|
|
|
void gw485_RxIt(void);
|
|
|
|
void bat485_RxIt(void);
|
2024-12-06 09:38:25 +00:00
|
|
|
|
2024-12-18 09:43:14 +00:00
|
|
|
void gw485_TxIt(void);
|
|
|
|
void bat485_TxIt(void);
|
|
|
|
|
2024-12-06 09:38:25 +00:00
|
|
|
#endif
|