1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
| #ifndef __MODBUS_H_V10__
| #define __MODBUS_H_V10__
|
| typedef struct tagteacher
| {
| int Num;
| int Age;
| int height;
| int Score1;
| int Score2;
| int Score3;
|
| }stteacher;
|
| void ModbusparsePacket(char *,unsigned char);
| void ModbusProcess();
|
| #endif /* __MODBUS_H_V10__ */
|
|