pub trait DpllId: Sealed + PclkId {
    const DYN: DynDpllId;
    const NUM: usize;
}
Expand description

Type-level enum identifying one of two possible Dplls

The types implementing this trait, i.e. Dpll0Id and Dpll1Id, are type-level variants of DpllId, and they identify one of the two possible digital phase-locked loops.

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

Required Associated Constants

Corresponding variant of DynDpllId

Corresponding numeric index

Implementors