pub trait PclkId: Sealed {
    const DYN: DynPclkId;
}
Expand description

Type-level enum identifying one of the 48 possible Pclks

The types implementing this trait, e.g. Sercom0 or DfllId, are type-level variants of PclkId, and they identify one of the 48 possible peripheral channel clocks.

PclkId is the type-level equivalent of DynPclkId. See the documentation on type-level programming and specifically type-level enums for more details.

Required Associated Constants

Corresponding variant of DynPclkId

Implementors