Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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>;
}