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];
2024-12-06 09:38:25 +00:00
void GW485_comm(void);
void BAT485_comm(void);
void gw485_RxIt(void);
void bat485_RxIt(void);
2024-12-06 09:38:25 +00:00
#endif