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:
parent
17da2dea31
commit
dda5b6308e
@ -269,6 +269,9 @@ Serial::SerialImpl::reconfigurePort ()
|
|||||||
#ifdef B460800
|
#ifdef B460800
|
||||||
case 460800: baud = B460800; break;
|
case 460800: baud = B460800; break;
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef B576000
|
||||||
|
case 576000: baud = B576000; break;
|
||||||
|
#endif
|
||||||
#ifdef B921600
|
#ifdef B921600
|
||||||
case 921600: baud = B921600; break;
|
case 921600: baud = B921600; break;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user