pub trait Capability: Sealed {
    const FLAG_MASK: u8;
    const STATUS_MASK: u16;
    const RXEN: bool;
    const TXEN: bool;
}
Expand description

Type-level enum representing the capabilities of a UART peripheral

Associated Constants

Available interrupt flags for the specified capability

Available status flags for the specified capability

Enable CTRLA.RXEN field?

Enable CTRLA.TXEN field?

Implementors