atsamd_hal::sercom::uart

Trait Capability

Source
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

Required Associated Constants§

Source

const FLAG_MASK: u8

Available interrupt flags for the specified capability

Source

const STATUS_MASK: u16

Available status flags for the specified capability

Source

const RXEN: bool

Enable CTRLA.RXEN field?

Source

const TXEN: bool

Enable CTRLA.TXEN field?

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Capability for Duplex

Source§

const FLAG_MASK: u8 = 175u8

Source§

const STATUS_MASK: u16 = 55u16

Source§

const RXEN: bool = true

Source§

const TXEN: bool = true

Source§

impl Capability for Rx

Source§

const FLAG_MASK: u8 = 172u8

Source§

const STATUS_MASK: u16 = 55u16

Source§

const RXEN: bool = true

Source§

const TXEN: bool = false

Source§

impl Capability for RxDuplex

Source§

const FLAG_MASK: u8 = 172u8

Source§

const STATUS_MASK: u16 = 55u16

Source§

const RXEN: bool = true

Source§

const TXEN: bool = false

Source§

impl Capability for Tx

Source§

const FLAG_MASK: u8 = 3u8

Source§

const STATUS_MASK: u16 = 0u16

Source§

const RXEN: bool = false

Source§

const TXEN: bool = true

Source§

impl Capability for TxDuplex

Source§

const FLAG_MASK: u8 = 3u8

Source§

const STATUS_MASK: u16 = 0u16

Source§

const RXEN: bool = false

Source§

const TXEN: bool = true