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
28
29
34
35
36
37
38
39
40
41
42
43
44
45
46
54
55
61
62
63
69
70
71
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
98
99
100
106
107
108
111
112
113
114
115
116
/* ... */
/* ... */
#ifndef OPENTHREAD_PLATFORM_UART_H_
#define OPENTHREAD_PLATFORM_UART_H_
#include <stdint.h>
#include <openthread/error.h>
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
/* ... */
otError otPlatUartEnable(void);
/* ... */
otError otPlatUartDisable(void);
/* ... */
otError otPlatUartSend(const uint8_t *aBuf, uint16_t aBufLength);
/* ... */
otError otPlatUartFlush(void);
/* ... */
extern void otPlatUartSendDone(void);
/* ... */
extern void otPlatUartReceived(const uint8_t *aBuf, uint16_t aBufLength);
/* ... */
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif