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
36
37
38
39
40
41
42
43
44
45
46
47
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    _reserved0: [u8; 64usize],
    #[doc = "0x40 - RTC Configuration Register"]
    pub rtccfg: RTCCFG,
    _reserved1: [u8; 4usize],
    #[doc = "0x48 - RTC Counter Low Register"]
    pub rtclo: RTCLO,
    #[doc = "0x4c - RTC Counter High Register"]
    pub rtchi: RTCHI,
    #[doc = "0x50 - RTC Scaled Counter Register"]
    pub rtcs: RTCS,
    _reserved2: [u8; 12usize],
    #[doc = "0x60 - RTC Compare Register"]
    pub rtccmp: RTCCMP,
}
#[doc = "RTC Configuration Register"]
pub struct RTCCFG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Configuration Register"]
pub mod rtccfg;
#[doc = "RTC Counter Low Register"]
pub struct RTCLO {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Counter Low Register"]
pub mod rtclo;
#[doc = "RTC Counter High Register"]
pub struct RTCHI {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Counter High Register"]
pub mod rtchi;
#[doc = "RTC Scaled Counter Register"]
pub struct RTCS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Scaled Counter Register"]
pub mod rtcs;
#[doc = "RTC Compare Register"]
pub struct RTCCMP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Compare Register"]
pub mod rtccmp;