stm32l4x2_pac/
wwdg.rs

1#[doc = r" Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Control register"]
5    pub cr: CR,
6    #[doc = "0x04 - Configuration register"]
7    pub cfr: CFR,
8    #[doc = "0x08 - Status register"]
9    pub sr: SR,
10}
11#[doc = "Control register"]
12pub struct CR {
13    register: ::vcell::VolatileCell<u32>,
14}
15#[doc = "Control register"]
16pub mod cr;
17#[doc = "Configuration register"]
18pub struct CFR {
19    register: ::vcell::VolatileCell<u32>,
20}
21#[doc = "Configuration register"]
22pub mod cfr;
23#[doc = "Status register"]
24pub struct SR {
25    register: ::vcell::VolatileCell<u32>,
26}
27#[doc = "Status register"]
28pub mod sr;