rust-embedded-talk/example-source/msp432p401r/src/wdt_a.rs

14 lines
343 B
Rust

#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
_reserved0: [u8; 12usize],
#[doc = "0x0c - Watchdog Timer Control Register"]
pub wdtctl: WDTCTL,
}
#[doc = "Watchdog Timer Control Register"]
pub struct WDTCTL {
register: ::vcell::VolatileCell<u16>,
}
#[doc = "Watchdog Timer Control Register"]
pub mod wdtctl;