yu.dong | c33b307 | 2024-08-21 23:14:49 -0700 | [diff] [blame^] | 1 | typedef struct |
2 | { | ||||
3 | LOCAL_PARA_HDR | ||||
4 | UART_PORT port; | ||||
5 | module_type owner; | ||||
6 | }uart_putbytes_req_struct; | ||||
7 | |||||
8 | typedef struct | ||||
9 | { | ||||
10 | LOCAL_PARA_HDR | ||||
11 | UART_PORT port; | ||||
12 | kal_bool sendReadyToRead; | ||||
13 | }uart_getbytes_ind_struct; | ||||
14 | |||||
15 | typedef struct | ||||
16 | { | ||||
17 | LOCAL_PARA_HDR | ||||
18 | UART_PORT port; | ||||
19 | module_type owner; | ||||
20 | kal_bool is_WriteSuspend; | ||||
21 | kal_uint16 maxWriteLength; | ||||
22 | }uart_set_config_ind_struct; | ||||
23 |