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

Merge pull request #86 from avian2/add-57600-baud

Add 576000 baud support for Unix
This commit is contained in:
William Woodall 2015-01-12 10:34:06 -08:00
commit 2473a8770f

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