Skip to content
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

Merged
merged 3 commits into from
Aug 28, 2023

Conversation

SMorettini
Copy link
Contributor

Originating Project/Creator
Affected Component Drv.LinuxUartDriver
Affected Architectures(s)
Related Issue(s)
Has Unit Tests (y/n)
Builds Without Errors (y/n)
Unit Tests Pass (y/n)
Documentation Included (y/n)

Change Description

Added support for additional baud rates.

@SMorettini SMorettini requested a review from LeStarch August 28, 2023 06:33
@LeStarch
Copy link
Collaborator

@thomas-bc could you look through this too?

case BAUD_2000K:
relayRate = B2000000;
break;
#ifdef B2500000

Check notice

Code scanning / CodeQL

Conditional compilation

Use of conditional compilation must be kept to a minimum.
relayRate = B2500000;
break;
#endif
#ifdef B3000000

Check notice

Code scanning / CodeQL

Conditional compilation

Use of conditional compilation must be kept to a minimum.
relayRate = B3000000;
break;
#endif
#ifdef B3500000

Check notice

Code scanning / CodeQL

Conditional compilation

Use of conditional compilation must be kept to a minimum.
relayRate = B3500000;
break;
#endif
#ifdef B4000000

Check notice

Code scanning / CodeQL

Conditional compilation

Use of conditional compilation must be kept to a minimum.
@LeStarch LeStarch merged commit a5c7aaa into nasa:devel Aug 28, 2023
@SMorettini SMorettini deleted the add-more-baud-rate-to-UART branch August 29, 2023 06:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants