Struct RegisterBlock

Source
#[repr(C)]
pub struct RegisterBlock { /* private fields */ }
Expand description

Register block

Implementations§

Source§

impl RegisterBlock

Source

pub const fn t(&self, n: usize) -> &T

0x00..0x48 - Cluster T%s, containing T?CONFIG, T?LO, T?HI, T?UPDATE, T?ALARMLO, T?ALARMHI, T?LOADLO, T?LOADHI, T?LOAD

Source

pub fn t_iter(&self) -> impl Iterator<Item = &T>

Iterator for array of: 0x00..0x48 - Cluster T%s, containing T?CONFIG, T?LO, T?HI, T?UPDATE, T?ALARMLO, T?ALARMHI, T?LOADLO, T?LOADHI, T?LOAD

Source

pub const fn wdtconfig0(&self) -> &WDTCONFIG0

0x48 - Watchdog timer configuration register

Source

pub const fn wdtconfig1(&self) -> &WDTCONFIG1

0x4c - Watchdog timer prescaler register

Source

pub const fn wdtconfig2(&self) -> &WDTCONFIG2

0x50 - Watchdog timer stage 0 timeout value

Source

pub const fn wdtconfig3(&self) -> &WDTCONFIG3

0x54 - Watchdog timer stage 1 timeout value

Source

pub const fn wdtconfig4(&self) -> &WDTCONFIG4

0x58 - Watchdog timer stage 2 timeout value

Source

pub const fn wdtconfig5(&self) -> &WDTCONFIG5

0x5c - Watchdog timer stage 3 timeout value

Source

pub const fn wdtfeed(&self) -> &WDTFEED

0x60 - Write to feed the watchdog timer

Source

pub const fn wdtwprotect(&self) -> &WDTWPROTECT

0x64 - Watchdog write protect register

Source

pub const fn rtccalicfg(&self) -> &RTCCALICFG

0x68 - RTC calibration configuration register

Source

pub const fn rtccalicfg1(&self) -> &RTCCALICFG1

0x6c - RTC calibration configuration register 1

Source

pub const fn lactconfig(&self) -> &LACTCONFIG

0x70 - LACT configuration register

Source

pub const fn lactrtc(&self) -> &LACTRTC

0x74 - LACT RTC register

Source

pub const fn lactlo(&self) -> &LACTLO

0x78 - LACT low register

Source

pub const fn lacthi(&self) -> &LACTHI

0x7c - LACT high register

Source

pub const fn lactupdate(&self) -> &LACTUPDATE

0x80 - LACT update register

Source

pub const fn lactalarmlo(&self) -> &LACTALARMLO

0x84 - LACT alarm low register

Source

pub const fn lactalarmhi(&self) -> &LACTALARMHI

0x88 - LACT alarm high register

Source

pub const fn lactloadlo(&self) -> &LACTLOADLO

0x8c - LACT load low register

Source

pub const fn lactloadhi(&self) -> &LACTLOADHI

0x90 - Timer LACT load high register

Source

pub const fn lactload(&self) -> &LACTLOAD

0x94 - Timer LACT load register

Source

pub const fn int_ena(&self) -> &INT_ENA

0x98 - Interrupt enable bits

Source

pub const fn int_raw(&self) -> &INT_RAW

0x9c - Raw interrupt status

Source

pub const fn int_st(&self) -> &INT_ST

0xa0 - Masked interrupt status

Source

pub const fn int_clr(&self) -> &INT_CLR

0xa4 - Interrupt clear bits

Source

pub const fn rtccalicfg2(&self) -> &RTCCALICFG2

0xa8 - Timer group calibration register

Source

pub const fn timers_date(&self) -> &TIMERS_DATE

0xf8 - Version control register

Source

pub const fn regclk(&self) -> &REGCLK

0xfc - Timer group clock gate register

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>,

Source§

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>,

Source§

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.