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

Proposal for Configure baudrate trait #209

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/serial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,13 @@ pub trait Write<Word> {
/// Ensures that none of the previously written words are still buffered
fn try_flush(&mut self) -> nb::Result<(), Self::Error>;
}

/// Enable changing the baudrate after initiation of serial interface
pub trait ConfigureBaud {
/// Baudrate type
type BaudRate;
/// Set baud error
type Error;
/// Change baud rate
fn set_baud_rate(&mut self, baud_rate: Self::BaudRate) -> Result<(), Self::Error>;
}