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

22 lines
559 B
Rust

#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
_reserved0: [u8; 4usize],
#[doc = "0x04 - Interrupt Control Type Register"]
pub ictr: ICTR,
#[doc = "0x08 - Auxiliary Control Register"]
pub actlr: ACTLR,
}
#[doc = "Interrupt Control Type Register"]
pub struct ICTR {
register: ::vcell::VolatileCell<u32>,
}
#[doc = "Interrupt Control Type Register"]
pub mod ictr;
#[doc = "Auxiliary Control Register"]
pub struct ACTLR {
register: ::vcell::VolatileCell<u32>,
}
#[doc = "Auxiliary Control Register"]
pub mod actlr;