* ser-unix.c (baudtab): Add 57600, 115200, 230400, and 460800 baud.

This commit is contained in:
Stu Grossman 1998-05-02 16:36:05 +00:00
parent b18c9753ca
commit e5a940e2c8
2 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Sat May 2 09:35:07 1998 Stu Grossman <grossman@babylon-5.cygnus.com>
* ser-unix.c (baudtab): Add 57600, 115200, 230400, and 460800 baud.
Fri May 1 10:58:34 1998 John Metzler <jmetzler@cygnus.com>
* monitor.c: Turn off debug

View File

@ -618,6 +618,18 @@ baudtab[] =
{9600, B9600},
{19200, B19200},
{38400, B38400},
#ifdef B57600
{57600, B57600},
#endif
#ifdef B115200
{115200, B115200},
#endif
#ifdef B230400
{230400, B230400},
#endif
#ifdef B460800
{460800, B460800},
#endif
{-1, -1},
};