mm32f3270_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 cfgr: CFGR,
8    #[doc = "0x08 - Status register"]
9    pub sr: SR,
10}
11#[doc = "CR (rw) register accessor: an alias for `Reg<CR_SPEC>`"]
12pub type CR = crate::Reg<cr::CR_SPEC>;
13#[doc = "Control register"]
14pub mod cr;
15#[doc = "CFGR (rw) register accessor: an alias for `Reg<CFGR_SPEC>`"]
16pub type CFGR = crate::Reg<cfgr::CFGR_SPEC>;
17#[doc = "Configuration register"]
18pub mod cfgr;
19#[doc = "SR (rw) register accessor: an alias for `Reg<SR_SPEC>`"]
20pub type SR = crate::Reg<sr::SR_SPEC>;
21#[doc = "Status register"]
22pub mod sr;