1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#[doc = r"Register block"]
#[repr(C)]
#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
pub struct RegisterBlock {
    #[doc = "0x00 - "]
    pub timer_load: TIMER_LOAD,
    #[doc = "0x04 - "]
    pub timer_count: TIMER_COUNT,
    #[doc = "0x08 - "]
    pub timer_ctrl: TIMER_CTRL,
    #[doc = "0x0c - "]
    pub timer_int: TIMER_INT,
    #[doc = "0x10 - "]
    pub timer_alarm: TIMER_ALARM,
}
#[doc = "TIMER_LOAD (rw) register accessor: an alias for `Reg<TIMER_LOAD_SPEC>`"]
pub type TIMER_LOAD = crate::Reg<timer_load::TIMER_LOAD_SPEC>;
#[doc = ""]
pub mod timer_load;
#[doc = "TIMER_COUNT (rw) register accessor: an alias for `Reg<TIMER_COUNT_SPEC>`"]
pub type TIMER_COUNT = crate::Reg<timer_count::TIMER_COUNT_SPEC>;
#[doc = ""]
pub mod timer_count;
#[doc = "TIMER_CTRL (rw) register accessor: an alias for `Reg<TIMER_CTRL_SPEC>`"]
pub type TIMER_CTRL = crate::Reg<timer_ctrl::TIMER_CTRL_SPEC>;
#[doc = ""]
pub mod timer_ctrl;
#[doc = "TIMER_INT (rw) register accessor: an alias for `Reg<TIMER_INT_SPEC>`"]
pub type TIMER_INT = crate::Reg<timer_int::TIMER_INT_SPEC>;
#[doc = ""]
pub mod timer_int;
#[doc = "TIMER_ALARM (rw) register accessor: an alias for `Reg<TIMER_ALARM_SPEC>`"]
pub type TIMER_ALARM = crate::Reg<timer_alarm::TIMER_ALARM_SPEC>;
#[doc = ""]
pub mod timer_alarm;