Struct nrf52840_pac::rtc0::RegisterBlock

source ·
#[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..0x150 - Description collection[n]: Compare event on CC[n] 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..0x550 - Description collection[n]: Compare register n

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.