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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - RTC Time Seconds Register"]
    pub tsr: TSR,
    #[doc = "0x04 - RTC Time Prescaler Register"]
    pub tpr: TPR,
    #[doc = "0x08 - RTC Time Alarm Register"]
    pub tar: TAR,
    #[doc = "0x0c - RTC Time Compensation Register"]
    pub tcr: TCR,
    #[doc = "0x10 - RTC Control Register"]
    pub cr: CR,
    #[doc = "0x14 - RTC Status Register"]
    pub sr: SR,
    #[doc = "0x18 - RTC Lock Register"]
    pub lr: LR,
    #[doc = "0x1c - RTC Interrupt Enable Register"]
    pub ier: IER,
    _reserved0: [u8; 2016usize],
    #[doc = "0x800 - RTC Write Access Register"]
    pub war: WAR,
    #[doc = "0x804 - RTC Read Access Register"]
    pub rar: RAR,
}
#[doc = "RTC Time Seconds Register"]
pub struct TSR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Time Seconds Register"]
pub mod tsr;
#[doc = "RTC Time Prescaler Register"]
pub struct TPR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Time Prescaler Register"]
pub mod tpr;
#[doc = "RTC Time Alarm Register"]
pub struct TAR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Time Alarm Register"]
pub mod tar;
#[doc = "RTC Time Compensation Register"]
pub struct TCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Time Compensation Register"]
pub mod tcr;
#[doc = "RTC Control Register"]
pub struct CR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Control Register"]
pub mod cr;
#[doc = "RTC Status Register"]
pub struct SR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Status Register"]
pub mod sr;
#[doc = "RTC Lock Register"]
pub struct LR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Lock Register"]
pub mod lr;
#[doc = "RTC Interrupt Enable Register"]
pub struct IER {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Interrupt Enable Register"]
pub mod ier;
#[doc = "RTC Write Access Register"]
pub struct WAR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Write Access Register"]
pub mod war;
#[doc = "RTC Read Access Register"]
pub struct RAR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RTC Read Access Register"]
pub mod rar;