pub trait Sercom: Sealed + Deref<Target = RegisterBlock> {
    const NUM: usize;

    fn enable_apb_clock(&mut self, ctrl: &APB_CLK_CTRL);
}
Expand description

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

Required Associated Constants

SERCOM number

Required Methods

Enable the corresponding APB clock

Implementors