[][src]Struct ambiq_apollo2_pac::wdt::RegisterBlock

#[repr(C)]
pub struct RegisterBlock {
    pub cfg: CFG,
    pub rstrt: RSTRT,
    pub lock: LOCK,
    pub count: COUNT,
    pub inten: INTEN,
    pub intstat: INTSTAT,
    pub intclr: INTCLR,
    pub intset: INTSET,
    // some fields omitted
}

Register block

Fields

cfg: CFG

0x00 - Configuration Register

rstrt: RSTRT

0x04 - Restart the watchdog timer

lock: LOCK

0x08 - Locks the WDT

count: COUNT

0x0c - Current Counter Value for WDT

inten: INTEN

0x200 - WDT Interrupt register: Enable

intstat: INTSTAT

0x204 - WDT Interrupt register: Status

intclr: INTCLR

0x208 - WDT Interrupt register: Clear

intset: INTSET

0x20c - WDT Interrupt register: Set

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.