[][src]Struct lpc54606_pac::wwdt::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub mod_: MOD,
    pub tc: TC,
    pub feed: FEED,
    pub tv: TV,
    pub warnint: WARNINT,
    pub window: WINDOW,
    // some fields omitted
}

Register block

Fields

mod_: MOD

0x00 - Watchdog mode register. This register contains the basic mode and status of the Watchdog Timer.

tc: TC

0x04 - Watchdog timer constant register. This 24-bit register determines the time-out value.

feed: FEED

0x08 - Watchdog feed sequence register. Writing 0xAA followed by 0x55 to this register reloads the Watchdog timer with the value contained in TC.

tv: TV

0x0c - Watchdog timer value register. This 24-bit register reads out the current value of the Watchdog timer.

warnint: WARNINT

0x14 - Watchdog Warning Interrupt compare value.

window: WINDOW

0x18 - Watchdog Window compare value.

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.