1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
186
187
188
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
224
225
226
233
234
235
242
243
244
251
252
253
259
260
261
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/* ... */
#ifndef __ESP_SYS_TERMIOS_H__
#define __ESP_SYS_TERMIOS_H__
#include <stdint.h>
#include <sys/types.h>
#include "sdkconfig.h"
#ifdef CONFIG_VFS_SUPPORT_TERMIOS
#define VEOF 0
#define VEOL 1
#define VERASE 2
#define VINTR 3
#define VKILL 4
#define VMIN 5
#define VQUIT 6
#define VSTART 7
#define VSTOP 8
#define VSUSP 9
#define VTIME 10
#define NCCS (VTIME + 1)
#define BRKINT (1u << 0)
#define ICRNL (1u << 1)
#define IGNBRK (1u << 2)
#define IGNCR (1u << 3)
#define IGNPAR (1u << 4)
#define INLCR (1u << 5)
#define INPCK (1u << 6)
#define ISTRIP (1u << 7)
#define IUCLC (1u << 8)
#define IXANY (1u << 9)
#define IXOFF (1u << 10)
#define IXON (1u << 11)
#define PARMRK (1u << 12)
#define OPOST (1u << 0)
#define OLCUC (1u << 1)
#define ONLCR (1u << 2)
#define OCRNL (1u << 3)
#define ONOCR (1u << 4)
#define ONLRET (1u << 5)
#define OFILL (1u << 6)
#define NLDLY (1u << 7)
#define NL0 (0u << 7)
#define NL1 (1u << 7)
#define CRDLY (3u << 8)
#define CR0 (0u << 8)
#define CR1 (1u << 8)
#define CR2 (2u << 8)
#define CR3 (3u << 8)
#define TABDLY (3u << 10)
#define TAB0 (0u << 10)
#define TAB1 (1u << 10)
#define TAB2 (2u << 10)
#define TAB3 (3u << 10)
#define BSDLY (1u << 12)
#define BS0 (0u << 12)
#define BS1 (1u << 12)
#define VTDLY (1u << 13)
#define VT0 (0u << 13)
#define VT1 (1u << 13)
#define FFDLY (1u << 14)
#define FF0 (0u << 14)
#define FF1 (1u << 14)
#define B0 0
#define B50 1
#define B75 2
#define B110 3
#define B134 4
#define B150 5
#define B200 6
#define B300 7
#define B600 8
#define B1200 9
#define B1800 10
#define B2400 11
#define B4800 12
#define B9600 13
#define B19200 14
#define B38400 15
#define B57600 16
#define B115200 17
#define B230400 18
#define B460800 19
#define B500000 20
#define B576000 21
#define B921600 22
#define B1000000 23
#define B1152000 24
#define B1500000 25
#define B2000000 26
#define B2500000 27
#define B3000000 28
#define B3500000 29
#define B4000000 30
#define CSIZE (3u << 0)
#define CS5 (0u << 0)
#define CS6 (1u << 0)
#define CS7 (2u << 0)
#define CS8 (3u << 0)
#define CSTOPB (1u << 2)
#define CREAD (1u << 3)
#define PARENB (1u << 4)
#define PARODD (1u << 5)
#define HUPCL (1u << 6)
#define CLOCAL (1u << 7)
#define CBAUD (1u << 8)
#define CBAUDEX (1u << 9)
#define BOTHER (1u << 10)
#define ECHO (1u << 0)
#define ECHOE (1u << 1)
#define ECHOK (1u << 2)
#define ECHONL (1u << 3)
#define ICANON (1u << 4)
#define IEXTEN (1u << 5)
#define ISIG (1u << 6)
#define NOFLSH (1u << 7)
#define TOSTOP (1u << 8)
#define XCASE (1u << 9)
#define TCSANOW 0
#define TCSADRAIN 1
#define TCSAFLUSH 2
#define TCIFLUSH 0
#define TCIOFLUSH 1
#define TCOFLUSH 2
#define TCIOFF 0
#define TCION 1
#define TCOOFF 2
#define TCOON 3 119 defines
typedef uint8_t cc_t;
typedef uint32_t speed_t;
typedef uint16_t tcflag_t;
struct termios {
tcflag_t c_iflag;
tcflag_t c_oflag;
tcflag_t c_cflag;
tcflag_t c_lflag;
cc_t c_cc[NCCS];
speed_t c_ispeed;
speed_t c_ospeed;
}{ ... };
#ifdef __cplusplus
extern "C" {
#endif
/* ... */
speed_t cfgetispeed(const struct termios *p);
/* ... */
speed_t cfgetospeed(const struct termios *p);
/* ... */
int cfsetispeed(struct termios *p, speed_t sp);
/* ... */
int cfsetospeed(struct termios *p, speed_t sp);
/* ... */
int tcdrain(int fd);
/* ... */
int tcflow(int fd, int action);
/* ... */
int tcflush(int fd, int select);
/* ... */
int tcgetattr(int fd, struct termios *p);
/* ... */
pid_t tcgetsid(int fd);
/* ... */
int tcsendbreak(int fd, int duration);
/* ... */
int tcsetattr(int fd, int optional_actions, const struct termios *p);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif
/* ... */
#endif