#[repr(C)]
pub struct RegisterBlock {
Show 25 fields pub tasks_start: TASKS_START, pub tasks_stop: TASKS_STOP, pub tasks_clear: TASKS_CLEAR, pub tasks_trigovrflw: TASKS_TRIGOVRFLW, pub tasks_capture: [TASKS_CAPTURE; 4], pub subscribe_start: SUBSCRIBE_START, pub subscribe_stop: SUBSCRIBE_STOP, pub subscribe_clear: SUBSCRIBE_CLEAR, pub subscribe_trigovrflw: SUBSCRIBE_TRIGOVRFLW, pub subscribe_capture: [SUBSCRIBE_CAPTURE; 4], pub events_tick: EVENTS_TICK, pub events_ovrflw: EVENTS_OVRFLW, pub events_compare: [EVENTS_COMPARE; 4], pub publish_tick: PUBLISH_TICK, pub publish_ovrflw: PUBLISH_OVRFLW, pub publish_compare: [PUBLISH_COMPARE; 4], pub shorts: SHORTS, 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

tasks_capture: [TASKS_CAPTURE; 4]

0x40..0x50 - Description collection: Capture RTC counter to CC[n] register

subscribe_start: SUBSCRIBE_START

0x80 - Subscribe configuration for task START

subscribe_stop: SUBSCRIBE_STOP

0x84 - Subscribe configuration for task STOP

subscribe_clear: SUBSCRIBE_CLEAR

0x88 - Subscribe configuration for task CLEAR

subscribe_trigovrflw: SUBSCRIBE_TRIGOVRFLW

0x8c - Subscribe configuration for task TRIGOVRFLW

subscribe_capture: [SUBSCRIBE_CAPTURE; 4]

0xc0..0xd0 - Description collection: Subscribe configuration for task CAPTURE[n]

events_tick: EVENTS_TICK

0x100 - Event on counter increment

events_ovrflw: EVENTS_OVRFLW

0x104 - Event on counter overflow

events_compare: [EVENTS_COMPARE; 4]

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

publish_tick: PUBLISH_TICK

0x180 - Publish configuration for event TICK

publish_ovrflw: PUBLISH_OVRFLW

0x184 - Publish configuration for event OVRFLW

publish_compare: [PUBLISH_COMPARE; 4]

0x1c0..0x1d0 - Description collection: Publish configuration for event COMPARE[n]

shorts: SHORTS

0x200 - Shortcuts between local events and tasks

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..0x550 - Description collection: Compare register n

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.

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.