1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #ifndef __RS485_H
| #define __RS485_H
|
| #include "define_all.h"
|
|
|
|
| void RS485_Usart_Init(uint8 BaudRateCode,uint8 Parity);
| void RS485_Send_Data(uint8 *buf,uint16 len);
| void RS485_Receive_Data(uint8 * recbuf, uint8 *rec485buffer, uint8 len);
|
|
| #endif
|
|