atsamd_hal::sercom::uart

Trait CharSize

Source
pub trait CharSize: Sealed {
    type Word: 'static + PrimInt + AsPrimitive<DataReg> + Copy;
}
Expand description

Type-level enum representing the UART character size

The UART character size affects the word size for the embedded HAL traits. Eight or less bit transactions use a u8 word, while nine-bit transactions use a u16 word.

Required Associated Types§

Source

type Word: 'static + PrimInt + AsPrimitive<DataReg> + Copy

Word size for the character size

Implementors§