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

Implemented by all RTC instances.

Required Associated Constants

The interrupt associated with this RTC instance.

Implementors