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§
Sourceconst DMA_RX_TRIGGER: TriggerSource
const DMA_RX_TRIGGER: TriggerSource
RX Trigger source for DMA transactions
Sourceconst DMA_TX_TRIGGER: TriggerSource
const DMA_TX_TRIGGER: TriggerSource
TX trigger source for DMA transactions
Required Associated Types§
Required Methods§
Sourcefn enable_apb_clock(&mut self, ctrl: &ApbClkCtrl)
fn enable_apb_clock(&mut self, ctrl: &ApbClkCtrl)
Enable the corresponding APB clock
Sourcefn reg_block(peripherals: &mut Peripherals) -> &RegisterBlock
fn reg_block(peripherals: &mut Peripherals) -> &RegisterBlock
Get a reference to the sercom from a
Peripherals
block
Provided Methods§
Sourcefn rx_waker() -> &'static AtomicWaker
fn rx_waker() -> &'static AtomicWaker
Get a reference to this Sercom
’s associated RX Waker
Sourcefn tx_waker() -> &'static AtomicWaker
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.