pub trait Instance: Sealed + Deref<Target = RegisterBlock> {
    const INTERRUPT: Interrupt;

    fn buffer() -> &'static Cell<[u16; 4]>;
}

Required Associated Constants

Required Methods

Provides access to the associated internal duty buffer for the instance.

Implementors