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
///Register block
#[repr(C)]
pub struct RegisterBlock {
///0x00 - desc CRH
pub crh: CRH,
///0x04 - desc CRL
pub crl: CRL,
///0x08 - desc PRLH
pub prlh: PRLH,
///0x0c - desc PRLL
pub prll: PRLL,
///0x10 - desc DIVH
pub divh: DIVH,
///0x14 - desc DIVL
pub divl: DIVL,
///0x18 - desc CNTH
pub cnth: CNTH,
///0x1c - desc CNTL
pub cntl: CNTL,
///0x20 - desc ALRH
pub alrh: ALRH,
///0x24 - desc ALRL
pub alrl: ALRL,
_reserved10: [u8; 0x04],
///0x2c - desc BKP_RTCCR
pub rtccr: RTCCR,
}
///CRH (rw) register accessor: an alias for `Reg<CRH_SPEC>`
pub type CRH = crate::Reg<crh::CRH_SPEC>;
///desc CRH
pub mod crh;
///CRL (rw) register accessor: an alias for `Reg<CRL_SPEC>`
pub type CRL = crate::Reg<crl::CRL_SPEC>;
///desc CRL
pub mod crl;
///PRLH (w) register accessor: an alias for `Reg<PRLH_SPEC>`
pub type PRLH = crate::Reg<prlh::PRLH_SPEC>;
///desc PRLH
pub mod prlh;
///PRLL (w) register accessor: an alias for `Reg<PRLL_SPEC>`
pub type PRLL = crate::Reg<prll::PRLL_SPEC>;
///desc PRLL
pub mod prll;
///DIVH (r) register accessor: an alias for `Reg<DIVH_SPEC>`
pub type DIVH = crate::Reg<divh::DIVH_SPEC>;
///desc DIVH
pub mod divh;
///DIVL (r) register accessor: an alias for `Reg<DIVL_SPEC>`
pub type DIVL = crate::Reg<divl::DIVL_SPEC>;
///desc DIVL
pub mod divl;
///CNTH (rw) register accessor: an alias for `Reg<CNTH_SPEC>`
pub type CNTH = crate::Reg<cnth::CNTH_SPEC>;
///desc CNTH
pub mod cnth;
///CNTL (rw) register accessor: an alias for `Reg<CNTL_SPEC>`
pub type CNTL = crate::Reg<cntl::CNTL_SPEC>;
///desc CNTL
pub mod cntl;
///ALRH (rw) register accessor: an alias for `Reg<ALRH_SPEC>`
pub type ALRH = crate::Reg<alrh::ALRH_SPEC>;
///desc ALRH
pub mod alrh;
///ALRL (rw) register accessor: an alias for `Reg<ALRL_SPEC>`
pub type ALRL = crate::Reg<alrl::ALRL_SPEC>;
///desc ALRL
pub mod alrl;
///RTCCR (rw) register accessor: an alias for `Reg<RTCCR_SPEC>`
pub type RTCCR = crate::Reg<rtccr::RTCCR_SPEC>;
///desc BKP_RTCCR
pub mod rtccr;