stm32f103xx/pwr/
mod.rs

1#[doc = r" Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Power control register (PWR_CR)"]
5    pub cr: CR,
6    #[doc = "0x04 - Power control register (PWR_CR)"]
7    pub csr: CSR,
8}
9#[doc = "Power control register (PWR_CR)"]
10pub struct CR {
11    register: ::vcell::VolatileCell<u32>,
12}
13#[doc = "Power control register (PWR_CR)"]
14pub mod cr;
15#[doc = "Power control register (PWR_CR)"]
16pub struct CSR {
17    register: ::vcell::VolatileCell<u32>,
18}
19#[doc = "Power control register (PWR_CR)"]
20pub mod csr;