1
0
mirror of https://github.com/wjwwood/serial.git synced 2026-01-22 19:54:57 +08:00

Add 576000 baud support for Unix

This commit is contained in:
Tomaz Solc 2015-01-06 15:15:31 +01:00
parent 17da2dea31
commit dda5b6308e

View File

@ -269,6 +269,9 @@ Serial::SerialImpl::reconfigurePort ()
#ifdef B460800
case 460800: baud = B460800; break;
#endif
#ifdef B576000
case 576000: baud = B576000; break;
#endif
#ifdef B921600
case 921600: baud = B921600; break;
#endif