-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for additional baud rates #2217
Conversation
@thomas-bc could you look through this too? |
case BAUD_2000K: | ||
relayRate = B2000000; | ||
break; | ||
#ifdef B2500000 |
Check notice
Code scanning / CodeQL
Conditional compilation
relayRate = B2500000; | ||
break; | ||
#endif | ||
#ifdef B3000000 |
Check notice
Code scanning / CodeQL
Conditional compilation
relayRate = B3000000; | ||
break; | ||
#endif | ||
#ifdef B3500000 |
Check notice
Code scanning / CodeQL
Conditional compilation
relayRate = B3500000; | ||
break; | ||
#endif | ||
#ifdef B4000000 |
Check notice
Code scanning / CodeQL
Conditional compilation
Change Description
Added support for additional baud rates.