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:
Anthony Shaw 2020-01-04 23:56:31 +11:00 committed by T. Wouters
parent 3a5de51159
commit 7dc72b8d4f
2 changed files with 46 additions and 0 deletions

View File

@ -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

View File

@ -613,6 +613,39 @@ static struct constant {
#ifdef B460800
{"B460800", B460800},
#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
{"CBAUD", CBAUD},
#endif