pub struct RegisterBlock {
pub tasks_start: TASKS_START,
pub events_timeout: EVENTS_TIMEOUT,
pub intenset: INTENSET,
pub intenclr: INTENCLR,
pub runstatus: RUNSTATUS,
pub reqstatus: REQSTATUS,
pub crv: CRV,
pub rren: RREN,
pub config: CONFIG,
pub rr: [RR; 8],
/* private fields */
}Expand description
Register block
Fields§
§tasks_start: TASKS_START0x00 - Start the watchdog
events_timeout: EVENTS_TIMEOUT0x100 - Watchdog timeout
intenset: INTENSET0x304 - Enable interrupt
intenclr: INTENCLR0x308 - Disable interrupt
runstatus: RUNSTATUS0x400 - Run status
reqstatus: REQSTATUS0x404 - Request status
crv: CRV0x504 - Counter reload value
rren: RREN0x508 - Enable register for reload request registers
config: CONFIG0x50c - Configuration register
rr: [RR; 8]0x600..0x620 - Description collection[n]: Reload request n
Auto Trait Implementations§
impl !Freeze for RegisterBlock
impl !RefUnwindSafe for RegisterBlock
impl Send for RegisterBlock
impl !Sync for RegisterBlock
impl Unpin for RegisterBlock
impl UnsafeUnpin for RegisterBlock
impl UnwindSafe for RegisterBlock
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more