summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/unix/modtermios.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/ports/unix/modtermios.c b/ports/unix/modtermios.c
index b1ad9a450..d7b94038a 100644
--- a/ports/unix/modtermios.c
+++ b/ports/unix/modtermios.c
@@ -141,6 +141,27 @@ static const mp_rom_map_elem_t mp_module_termios_globals_table[] = {
#ifdef B115200
C(B115200),
#endif
+ #ifdef B230400
+ C(B230400),
+ #endif
+ #ifdef B460800
+ C(B460800),
+ #endif
+ #ifdef B500000
+ C(B500000),
+ #endif
+ #ifdef B576000
+ C(B576000),
+ #endif
+ #ifdef B921600
+ C(B921600),
+ #endif
+ #ifdef B1000000
+ C(B1000000),
+ #endif
+ #ifdef B1152000
+ C(B1152000)
+ #endif
#undef C
};