Trait atmega_hal::usart::BaudrateArduinoExt
source · pub trait BaudrateArduinoExt {
// Required method
fn into_baudrate<CLOCK>(self) -> Baudrate<CLOCK>
where CLOCK: Clock;
}
Expand description
Same as BaudrateExt
but accounts for an errata of certain Arduino boards:
The affected boards where this trait should be used instead are:
- Duemilanove
- Uno
- Mega 2560
Required Methods§
sourcefn into_baudrate<CLOCK>(self) -> Baudrate<CLOCK>where
CLOCK: Clock,
fn into_baudrate<CLOCK>(self) -> Baudrate<CLOCK>where
CLOCK: Clock,
Calculate baudrate parameters from this number (with Arduino errata).
Object Safety§
This trait is not object safe.