diff options
| author | Arne Dußin | 2021-11-06 11:50:33 +0100 |
|---|---|---|
| committer | Arne Dußin | 2021-11-06 11:50:33 +0100 |
| commit | 0666a6ba1dbd66cf8b93c113e362ccbcd99152a0 (patch) | |
| tree | a184284dbd2316f4624f092e4e7521ea8c90855b /src/rtc/mode0.rs | |
| download | samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip | |
Initial commit
Diffstat (limited to 'src/rtc/mode0.rs')
| -rw-r--r-- | src/rtc/mode0.rs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/rtc/mode0.rs b/src/rtc/mode0.rs new file mode 100644 index 0000000..9ce5c38 --- /dev/null +++ b/src/rtc/mode0.rs @@ -0,0 +1,40 @@ +#[doc = "CTRLA register accessor: an alias for `Reg<CTRLA_SPEC>`"] +pub type CTRLA = crate::Reg<ctrla::CTRLA_SPEC>; +#[doc = "MODE0 Control A"] +pub mod ctrla; +#[doc = "EVCTRL register accessor: an alias for `Reg<EVCTRL_SPEC>`"] +pub type EVCTRL = crate::Reg<evctrl::EVCTRL_SPEC>; +#[doc = "MODE0 Event Control"] +pub mod evctrl; +#[doc = "INTENCLR register accessor: an alias for `Reg<INTENCLR_SPEC>`"] +pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>; +#[doc = "MODE0 Interrupt Enable Clear"] +pub mod intenclr; +#[doc = "INTENSET register accessor: an alias for `Reg<INTENSET_SPEC>`"] +pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>; +#[doc = "MODE0 Interrupt Enable Set"] +pub mod intenset; +#[doc = "INTFLAG register accessor: an alias for `Reg<INTFLAG_SPEC>`"] +pub type INTFLAG = crate::Reg<intflag::INTFLAG_SPEC>; +#[doc = "MODE0 Interrupt Flag Status and Clear"] +pub mod intflag; +#[doc = "DBGCTRL register accessor: an alias for `Reg<DBGCTRL_SPEC>`"] +pub type DBGCTRL = crate::Reg<dbgctrl::DBGCTRL_SPEC>; +#[doc = "Debug Control"] +pub mod dbgctrl; +#[doc = "SYNCBUSY register accessor: an alias for `Reg<SYNCBUSY_SPEC>`"] +pub type SYNCBUSY = crate::Reg<syncbusy::SYNCBUSY_SPEC>; +#[doc = "MODE0 Synchronization Busy Status"] +pub mod syncbusy; +#[doc = "FREQCORR register accessor: an alias for `Reg<FREQCORR_SPEC>`"] +pub type FREQCORR = crate::Reg<freqcorr::FREQCORR_SPEC>; +#[doc = "Frequency Correction"] +pub mod freqcorr; +#[doc = "COUNT register accessor: an alias for `Reg<COUNT_SPEC>`"] +pub type COUNT = crate::Reg<count::COUNT_SPEC>; +#[doc = "MODE0 Counter Value"] +pub mod count; +#[doc = "COMP register accessor: an alias for `Reg<COMP_SPEC>`"] +pub type COMP = crate::Reg<comp::COMP_SPEC>; +#[doc = "MODE0 Compare n Value"] +pub mod comp; |
