atsam4e16e_pac/
rtc.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Control Register"]
5    pub cr: CR,
6    #[doc = "0x04 - Mode Register"]
7    pub mr: MR,
8    #[doc = "0x08 - Time Register"]
9    pub timr: TIMR,
10    #[doc = "0x0c - Calendar Register"]
11    pub calr: CALR,
12    #[doc = "0x10 - Time Alarm Register"]
13    pub timalr: TIMALR,
14    #[doc = "0x14 - Calendar Alarm Register"]
15    pub calalr: CALALR,
16    #[doc = "0x18 - Status Register"]
17    pub sr: SR,
18    #[doc = "0x1c - Status Clear Command Register"]
19    pub sccr: SCCR,
20    #[doc = "0x20 - Interrupt Enable Register"]
21    pub ier: IER,
22    #[doc = "0x24 - Interrupt Disable Register"]
23    pub idr: IDR,
24    #[doc = "0x28 - Interrupt Mask Register"]
25    pub imr: IMR,
26    #[doc = "0x2c - Valid Entry Register"]
27    pub ver: VER,
28}
29#[doc = "CR (rw) register accessor: an alias for `Reg<CR_SPEC>`"]
30pub type CR = crate::Reg<cr::CR_SPEC>;
31#[doc = "Control Register"]
32pub mod cr;
33#[doc = "MR (rw) register accessor: an alias for `Reg<MR_SPEC>`"]
34pub type MR = crate::Reg<mr::MR_SPEC>;
35#[doc = "Mode Register"]
36pub mod mr;
37#[doc = "TIMR (rw) register accessor: an alias for `Reg<TIMR_SPEC>`"]
38pub type TIMR = crate::Reg<timr::TIMR_SPEC>;
39#[doc = "Time Register"]
40pub mod timr;
41#[doc = "CALR (rw) register accessor: an alias for `Reg<CALR_SPEC>`"]
42pub type CALR = crate::Reg<calr::CALR_SPEC>;
43#[doc = "Calendar Register"]
44pub mod calr;
45#[doc = "TIMALR (rw) register accessor: an alias for `Reg<TIMALR_SPEC>`"]
46pub type TIMALR = crate::Reg<timalr::TIMALR_SPEC>;
47#[doc = "Time Alarm Register"]
48pub mod timalr;
49#[doc = "CALALR (rw) register accessor: an alias for `Reg<CALALR_SPEC>`"]
50pub type CALALR = crate::Reg<calalr::CALALR_SPEC>;
51#[doc = "Calendar Alarm Register"]
52pub mod calalr;
53#[doc = "SR (r) register accessor: an alias for `Reg<SR_SPEC>`"]
54pub type SR = crate::Reg<sr::SR_SPEC>;
55#[doc = "Status Register"]
56pub mod sr;
57#[doc = "SCCR (w) register accessor: an alias for `Reg<SCCR_SPEC>`"]
58pub type SCCR = crate::Reg<sccr::SCCR_SPEC>;
59#[doc = "Status Clear Command Register"]
60pub mod sccr;
61#[doc = "IER (w) register accessor: an alias for `Reg<IER_SPEC>`"]
62pub type IER = crate::Reg<ier::IER_SPEC>;
63#[doc = "Interrupt Enable Register"]
64pub mod ier;
65#[doc = "IDR (w) register accessor: an alias for `Reg<IDR_SPEC>`"]
66pub type IDR = crate::Reg<idr::IDR_SPEC>;
67#[doc = "Interrupt Disable Register"]
68pub mod idr;
69#[doc = "IMR (r) register accessor: an alias for `Reg<IMR_SPEC>`"]
70pub type IMR = crate::Reg<imr::IMR_SPEC>;
71#[doc = "Interrupt Mask Register"]
72pub mod imr;
73#[doc = "VER (r) register accessor: an alias for `Reg<VER_SPEC>`"]
74pub type VER = crate::Reg<ver::VER_SPEC>;
75#[doc = "Valid Entry Register"]
76pub mod ver;