chargeController/APP/businessLogic/Inc/bl_comm.h

18 lines
247 B
C
Raw Normal View History

2024-12-06 09:38:25 +00:00
#ifndef BL_COMM_H_
#define BL_COMM_H_
#include "comm_types.h"
#include "uart_dev.h"
2024-12-06 09:38:25 +00:00
#define buffLen 100
extern uint8_t rs485_buff[buffLen];
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