1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| #ifndef UART_H
| #define UART_H
| typedef struct
| {
| unsigned char HeadA;
| unsigned char HeadB;
| unsigned char R_SpeedH;
| unsigned char R_SpeedL;
| unsigned char T_State;
| unsigned char R_Number;
| } Uart_DataPtrType;
|
| extern void UartInit(void);
|
| #endif
|
|