1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 #[doc = "0x00 - Mode"]
5 pub mod_: MOD,
6 #[doc = "0x04 - Timer Constant"]
7 pub tc: TC,
8 #[doc = "0x08 - Feed Sequence"]
9 pub feed: FEED,
10 #[doc = "0x0c - Timer Value"]
11 pub tv: TV,
12 _reserved4: [u8; 0x04],
13 #[doc = "0x14 - Warning Interrupt Compare Value"]
14 pub warnint: WARNINT,
15 #[doc = "0x18 - Window Compare Value"]
16 pub window: WINDOW,
17}
18#[doc = "MOD (rw) register accessor: an alias for `Reg<MOD_SPEC>`"]
19pub type MOD = crate::Reg<mod_::MOD_SPEC>;
20#[doc = "Mode"]
21pub mod mod_;
22#[doc = "TC (rw) register accessor: an alias for `Reg<TC_SPEC>`"]
23pub type TC = crate::Reg<tc::TC_SPEC>;
24#[doc = "Timer Constant"]
25pub mod tc;
26#[doc = "FEED (w) register accessor: an alias for `Reg<FEED_SPEC>`"]
27pub type FEED = crate::Reg<feed::FEED_SPEC>;
28#[doc = "Feed Sequence"]
29pub mod feed;
30#[doc = "TV (r) register accessor: an alias for `Reg<TV_SPEC>`"]
31pub type TV = crate::Reg<tv::TV_SPEC>;
32#[doc = "Timer Value"]
33pub mod tv;
34#[doc = "WARNINT (rw) register accessor: an alias for `Reg<WARNINT_SPEC>`"]
35pub type WARNINT = crate::Reg<warnint::WARNINT_SPEC>;
36#[doc = "Warning Interrupt Compare Value"]
37pub mod warnint;
38#[doc = "WINDOW (rw) register accessor: an alias for `Reg<WINDOW_SPEC>`"]
39pub type WINDOW = crate::Reg<window::WINDOW_SPEC>;
40#[doc = "Window Compare Value"]
41pub mod window;