Skip to content

Commit

Permalink
add support for 921600 baud rate
Browse files Browse the repository at this point in the history
  • Loading branch information
kvangorkom authored and stefi07 committed May 2, 2024
1 parent 2356b46 commit 0b0617b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libMagAOX/tty/usbDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ int usbDevice::loadConfig( mx::app::appConfigurator & config )
case 384000:
m_baudRate = B38400;
break;
case 921600:
m_baudRate = B921600;
break;
default:
break;
}
Expand Down

0 comments on commit 0b0617b

Please sign in to comment.