1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| #ifndef _RS485_READ_DATA_H_
| #define _RS485_READ_DATA_H_
|
| #include "define_all.h"
|
|
| typedef enum
| {
| RS485_COM_IDLE = 0U,
| RS485_COM_PWR_ON,
| RS485_COM_SEND,
| RS485_COM_WAIT_ANSWER,
| RS485_COM_TIMEOUT,
| RS485_COM_OFF
|
| } RS485_COM_STATUS_T; // ·§ÃÅ״̬ÀàÐÍ
|
|
|
|
|
| extern __IO RS485_COM_STATUS_T rs485_com_status_g;
|
| void rs485ReadDataPro(void);
|
|
| #endif
|
|