pub struct UsartConfig {
    pub word_len: WordLen,
    pub stop_bits: StopBits,
    pub oversampling: OverSampling,
    pub parity: Parity,
    pub irda_mode: IrdaMode,
}
Expand description

Configuration for Usart. Can be used with default::Default.

Fields

word_len: WordLen

Word length. Defaults to 8-bits.

stop_bits: StopBits

Stop bits: Defaults to 1.

oversampling: OverSampling

Oversampling rate. Defaults to 16x.

parity: Parity

Enable or disable parity control. Defaults to disabled.

irda_mode: IrdaMode

IrDA mode: Enables this protocol, which is used to communicate with IR devices.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.