#[repr(C)]
pub struct RegisterBlock {
Show 15 fields pub tasks_start: TASKS_START, pub tasks_stop: TASKS_STOP, pub tasks_clear: TASKS_CLEAR, pub tasks_trigovrflw: TASKS_TRIGOVRFLW, pub events_tick: EVENTS_TICK, pub events_ovrflw: EVENTS_OVRFLW, pub events_compare: [EVENTS_COMPARE; 4], pub intenset: INTENSET, pub intenclr: INTENCLR, pub evten: EVTEN, pub evtenset: EVTENSET, pub evtenclr: EVTENCLR, pub counter: COUNTER, pub prescaler: PRESCALER, pub cc: [CC; 4], /* private fields */
}
Expand description

Register block

Fields§

§tasks_start: TASKS_START

0x00 - Start RTC COUNTER

§tasks_stop: TASKS_STOP

0x04 - Stop RTC COUNTER

§tasks_clear: TASKS_CLEAR

0x08 - Clear RTC COUNTER

§tasks_trigovrflw: TASKS_TRIGOVRFLW

0x0c - Set COUNTER to 0xFFFFF0

§events_tick: EVENTS_TICK

0x100 - Event on COUNTER increment

§events_ovrflw: EVENTS_OVRFLW

0x104 - Event on COUNTER overflow

§events_compare: [EVENTS_COMPARE; 4]

0x140 - Description collection[0]: Compare event on CC[0] match

§intenset: INTENSET

0x304 - Enable interrupt

§intenclr: INTENCLR

0x308 - Disable interrupt

§evten: EVTEN

0x340 - Enable or disable event routing

§evtenset: EVTENSET

0x344 - Enable event routing

§evtenclr: EVTENCLR

0x348 - Disable event routing

§counter: COUNTER

0x504 - Current COUNTER value

§prescaler: PRESCALER

0x508 - 12 bit prescaler for COUNTER frequency (32768/(PRESCALER+1)).Must be written when RTC is stopped

§cc: [CC; 4]

0x540 - Description collection[0]: Compare register 0

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.