bpo-28367: Add additional baud rates for termios (GH-13142)
Co-authored-by: Andrey Smirnov <andrew.smirnov@gmail.com>. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
This commit is contained in:
parent
3a5de51159
commit
7dc72b8d4f
|
@ -0,0 +1,13 @@
|
||||||
|
Termios magic constants for the following baud rates:
|
||||||
|
- B500000
|
||||||
|
- B576000
|
||||||
|
- B921600
|
||||||
|
- B1000000
|
||||||
|
- B1152000
|
||||||
|
- B1500000
|
||||||
|
- B2000000
|
||||||
|
- B2500000
|
||||||
|
- B3000000
|
||||||
|
- B3500000
|
||||||
|
- B4000000
|
||||||
|
Patch by Andrey Smirnov
|
|
@ -613,6 +613,39 @@ static struct constant {
|
||||||
#ifdef B460800
|
#ifdef B460800
|
||||||
{"B460800", B460800},
|
{"B460800", B460800},
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef B500000
|
||||||
|
{"B500000", B500000},
|
||||||
|
#endif
|
||||||
|
#ifdef B576000
|
||||||
|
{ "B576000", B576000},
|
||||||
|
#endif
|
||||||
|
#ifdef B921600
|
||||||
|
{ "B921600", B921600},
|
||||||
|
#endif
|
||||||
|
#ifdef B1000000
|
||||||
|
{ "B1000000", B1000000},
|
||||||
|
#endif
|
||||||
|
#ifdef B1152000
|
||||||
|
{ "B1152000", B1152000},
|
||||||
|
#endif
|
||||||
|
#ifdef B1500000
|
||||||
|
{ "B1500000", B1500000},
|
||||||
|
#endif
|
||||||
|
#ifdef B2000000
|
||||||
|
{ "B2000000", B2000000},
|
||||||
|
#endif
|
||||||
|
#ifdef B2500000
|
||||||
|
{ "B2500000", B2500000},
|
||||||
|
#endif
|
||||||
|
#ifdef B3000000
|
||||||
|
{ "B3000000", B3000000},
|
||||||
|
#endif
|
||||||
|
#ifdef B3500000
|
||||||
|
{ "B3500000", B3500000},
|
||||||
|
#endif
|
||||||
|
#ifdef B4000000
|
||||||
|
{ "B4000000", B4000000},
|
||||||
|
#endif
|
||||||
#ifdef CBAUD
|
#ifdef CBAUD
|
||||||
{"CBAUD", CBAUD},
|
{"CBAUD", CBAUD},
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue