Type Alias R

Source
pub type R = R<ISRrs>;
Expand description

Register ISR reader

Aliased Type§

struct R { /* private fields */ }

Implementations§

Source§

impl R

Source

pub fn alrwf(&self, n: u8) -> ALRWF_R

Alarm (A,B) write flag

`n` is number of field in register. `n == 0` corresponds to `ALRAWF` field.
Source

pub fn alrwf_iter(&self) -> impl Iterator<Item = ALRWF_R> + '_

Iterator for array of: Alarm (A,B) write flag

Source

pub fn alrawf(&self) -> ALRWF_R

Bit 0 - Alarm A write flag

Source

pub fn alrbwf(&self) -> ALRWF_R

Bit 1 - Alarm B write flag

Source

pub fn wutwf(&self) -> WUTWF_R

Bit 2 - Wakeup timer write flag

Source

pub fn shpf(&self) -> SHPF_R

Bit 3 - Shift operation pending

Source

pub fn inits(&self) -> INITS_R

Bit 4 - Initialization status flag

Source

pub fn rsf(&self) -> RSF_R

Bit 5 - Registers synchronization flag

Source

pub fn initf(&self) -> INITF_R

Bit 6 - Initialization flag

Source

pub fn init(&self) -> INIT_R

Bit 7 - Initialization mode

Source

pub fn alrf(&self, n: u8) -> ALRF_R

Alarm (A,B) flag

`n` is number of field in register. `n == 0` corresponds to `ALRAF` field.
Source

pub fn alrf_iter(&self) -> impl Iterator<Item = ALRF_R> + '_

Iterator for array of: Alarm (A,B) flag

Source

pub fn alraf(&self) -> ALRF_R

Bit 8 - Alarm A flag

Source

pub fn alrbf(&self) -> ALRF_R

Bit 9 - Alarm B flag

Source

pub fn wutf(&self) -> WUTF_R

Bit 10 - Wakeup timer flag

Source

pub fn tsf(&self) -> TSF_R

Bit 11 - Time-stamp flag

Source

pub fn tsovf(&self) -> TSOVF_R

Bit 12 - Time-stamp overflow flag

Source

pub fn tamp1f(&self) -> TAMP1F_R

Bit 13 - RTC_TAMP1 detection flag

Source

pub fn tamp2f(&self) -> TAMP2F_R

Bit 14 - RTC_TAMP2 detection flag

Source

pub fn tamp3f(&self) -> TAMP3F_R

Bit 15 - RTC_TAMP3 detection flag

Source

pub fn recalpf(&self) -> RECALPF_R

Bit 16 - Recalibration pending flag

Trait Implementations§

Source§

impl Debug for R

Source§

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

Formats the value using the given formatter. Read more