pub trait AhbId: Sealed {
    const DYN: DynAhbId;
}
Expand description

Type-level enum identifying one of the possible AHB clocks

The types implementing this trait are type-level variants of AhbId, and they identify one of the possible AHB clocks, which can vary by chip. Each type corresponds to a specific bit in the AHBMASK register.

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

Required Associated Constants

Corresponding DynAhbId

Implementors