From dda5b6308eca60d2162377ef371d1cb0f14240de Mon Sep 17 00:00:00 2001 From: Tomaz Solc Date: Tue, 6 Jan 2015 15:15:31 +0100 Subject: [PATCH] Add 576000 baud support for Unix --- src/impl/unix.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/impl/unix.cc b/src/impl/unix.cc index b04cd9a..ceed439 100755 --- a/src/impl/unix.cc +++ b/src/impl/unix.cc @@ -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