From dc4ccfe6cc09039a51e449a5349fa47d80622aed Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 14 Mar 2020 17:02:55 -0500 Subject: Add missing 1200 serial baud rate under Linux --- serial.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/serial.c b/serial.c index a64a51d..7192e24 100644 --- a/serial.c +++ b/serial.c @@ -64,6 +64,9 @@ struct baudentry { #define BAUDENTRY(baud) { B##baud, baud }, static const struct baudentry sp_baudtable[] = { +#ifdef B1200 + BAUDENTRY(1200) +#endif BAUDENTRY(9600) /* unconditional default */ #ifdef B19200 BAUDENTRY(19200) -- cgit v1.1