#[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_START0x00 - Start RTC COUNTER
tasks_stop: TASKS_STOP0x04 - Stop RTC COUNTER
tasks_clear: TASKS_CLEAR0x08 - Clear RTC COUNTER
tasks_trigovrflw: TASKS_TRIGOVRFLW0x0c - Set COUNTER to 0xFFFFF0
events_tick: EVENTS_TICK0x100 - Event on COUNTER increment
events_ovrflw: EVENTS_OVRFLW0x104 - Event on COUNTER overflow
events_compare: [EVENTS_COMPARE; 4]0x140..0x150 - Description collection[n]: Compare event on CC[n] match
intenset: INTENSET0x304 - Enable interrupt
intenclr: INTENCLR0x308 - Disable interrupt
evten: EVTEN0x340 - Enable or disable event routing
evtenset: EVTENSET0x344 - Enable event routing
evtenclr: EVTENCLR0x348 - Disable event routing
counter: COUNTER0x504 - Current COUNTER value
prescaler: PRESCALER0x508 - 12 bit prescaler for COUNTER frequency (32768/(PRESCALER+1)).Must be written when RTC is stopped
cc: [CC; 4]0x540..0x550 - Description collection[n]: Compare register n
Auto Trait Implementations§
impl !Freeze for RegisterBlock
impl !RefUnwindSafe for RegisterBlock
impl Send for RegisterBlock
impl !Sync for RegisterBlock
impl Unpin for RegisterBlock
impl UnwindSafe for RegisterBlock
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more