Struct riot_sys::NRF_RTC_Type

source ·
#[repr(C)]
pub struct NRF_RTC_Type {
Show 21 fields pub TASKS_START: u32, pub TASKS_STOP: u32, pub TASKS_CLEAR: u32, pub TASKS_TRIGOVRFLW: u32, pub RESERVED: [u32; 60], pub EVENTS_TICK: u32, pub EVENTS_OVRFLW: u32, pub RESERVED1: [u32; 14], pub EVENTS_COMPARE: [u32; 4], pub RESERVED2: [u32; 109], pub INTENSET: u32, pub INTENCLR: u32, pub RESERVED3: [u32; 13], pub EVTEN: u32, pub EVTENSET: u32, pub EVTENCLR: u32, pub RESERVED4: [u32; 110], pub COUNTER: u32, pub PRESCALER: u32, pub RESERVED5: [u32; 13], pub CC: [u32; 4],
}
Expand description

@brief Real time counter 0 (RTC0)

Fields§

§TASKS_START: u32

< (@ 0x00000000) Start RTC COUNTER

§TASKS_STOP: u32

< (@ 0x00000004) Stop RTC COUNTER

§TASKS_CLEAR: u32

< (@ 0x00000008) Clear RTC COUNTER

§TASKS_TRIGOVRFLW: u32

< (@ 0x0000000C) Set COUNTER to 0xFFFFF0

§RESERVED: [u32; 60]§EVENTS_TICK: u32

< (@ 0x00000100) Event on COUNTER increment

§EVENTS_OVRFLW: u32

< (@ 0x00000104) Event on COUNTER overflow

§RESERVED1: [u32; 14]§EVENTS_COMPARE: [u32; 4]

< (@ 0x00000140) Description collection: Compare event on CC[n] match

§RESERVED2: [u32; 109]§INTENSET: u32

< (@ 0x00000304) Enable interrupt

§INTENCLR: u32

< (@ 0x00000308) Disable interrupt

§RESERVED3: [u32; 13]§EVTEN: u32

< (@ 0x00000340) Enable or disable event routing

§EVTENSET: u32

< (@ 0x00000344) Enable event routing

§EVTENCLR: u32

< (@ 0x00000348) Disable event routing

§RESERVED4: [u32; 110]§COUNTER: u32

< (@ 0x00000504) Current COUNTER value

§PRESCALER: u32

< (@ 0x00000508) 12 bit prescaler for COUNTER frequency (32768/(PRESCALER+1)).Mu t be written when RTC is stopped

§RESERVED5: [u32; 13]§CC: [u32; 4]

< (@ 0x00000540) Description collection: Compare register n

Trait Implementations§

source§

impl Clone for NRF_RTC_Type

source§

fn clone(&self) -> NRF_RTC_Type

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NRF_RTC_Type

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for NRF_RTC_Type

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for NRF_RTC_Type

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.