atsamd_hal::sercom

Trait Sercom

Source
pub trait Sercom: Sealed + Deref<Target = RegisterBlock> {
    type Interrupt: InterruptSource;

    const NUM: usize;
    const DMA_RX_TRIGGER: TriggerSource;
    const DMA_TX_TRIGGER: TriggerSource;

    // Required methods
    fn enable_apb_clock(&mut self, ctrl: &ApbClkCtrl);
    fn reg_block(peripherals: &mut Peripherals) -> &RegisterBlock;

    // Provided methods
    fn rx_waker() -> &'static AtomicWaker { ... }
    fn tx_waker() -> &'static AtomicWaker { ... }
}
Expand description

Type-level enum representing a Serial Communication Interface (SERCOM)

Required Associated Constants§

Source

const NUM: usize

SERCOM number

Source

const DMA_RX_TRIGGER: TriggerSource

RX Trigger source for DMA transactions

Source

const DMA_TX_TRIGGER: TriggerSource

TX trigger source for DMA transactions

Required Associated Types§

Required Methods§

Source

fn enable_apb_clock(&mut self, ctrl: &ApbClkCtrl)

Enable the corresponding APB clock

Source

fn reg_block(peripherals: &mut Peripherals) -> &RegisterBlock

Get a reference to the sercom from a Peripherals block

Provided Methods§

Source

fn rx_waker() -> &'static AtomicWaker

Get a reference to this Sercom’s associated RX Waker

Source

fn tx_waker() -> &'static AtomicWaker

Get a reference to this Sercom’s associated TX Waker

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 Sercom for Sercom0

Source§

const NUM: usize = 0usize

Source§

const DMA_RX_TRIGGER: TriggerSource = TriggerSource::Sercom0Rx

Source§

const DMA_TX_TRIGGER: TriggerSource = TriggerSource::Sercom0Tx

Source§

type Interrupt = SERCOM0

Source§

impl Sercom for Sercom1

Source§

const NUM: usize = 1usize

Source§

const DMA_RX_TRIGGER: TriggerSource = TriggerSource::Sercom1Rx

Source§

const DMA_TX_TRIGGER: TriggerSource = TriggerSource::Sercom1Tx

Source§

type Interrupt = SERCOM1

Source§

impl Sercom for Sercom2

Source§

const NUM: usize = 2usize

Source§

const DMA_RX_TRIGGER: TriggerSource = TriggerSource::Sercom2Rx

Source§

const DMA_TX_TRIGGER: TriggerSource = TriggerSource::Sercom2Tx

Source§

type Interrupt = SERCOM2