pub trait XoscId: Sealed {
    type XIn: PinId;
    type XOut: PinId;

    const NUM: usize;
}
Expand description

Type-level enum identifying one of two possible Xoscs

The types implementing this trait, i.e. Xosc0Id and Xosc1Id, are type-level variants of XoscId, and they identify one of two possible external crystal oscillators.

See the documentation on type-level programming and specifically type-level enums for more details.

Required Associated Types

Corresponding XIN PinId

Corresponding XOUT PinId

Required Associated Constants

Corresponding numeric index

Implementors