Add support for baudrates higher than 37800.

This commit is contained in:
dfr 1998-06-04 06:43:01 +00:00
parent 74e9afca63
commit 42bfb0ad24

View File

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