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/sercom0/usart_ext.rs | |
| download | samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip | |
Initial commit
Diffstat (limited to 'src/sercom0/usart_ext.rs')
| -rw-r--r-- | src/sercom0/usart_ext.rs | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/sercom0/usart_ext.rs b/src/sercom0/usart_ext.rs new file mode 100644 index 0000000..8c08b9e --- /dev/null +++ b/src/sercom0/usart_ext.rs @@ -0,0 +1,60 @@ +#[doc = "CTRLA register accessor: an alias for `Reg<CTRLA_SPEC>`"] +pub type CTRLA = crate::Reg<ctrla::CTRLA_SPEC>; +#[doc = "USART_EXT Control A"] +pub mod ctrla; +#[doc = "CTRLB register accessor: an alias for `Reg<CTRLB_SPEC>`"] +pub type CTRLB = crate::Reg<ctrlb::CTRLB_SPEC>; +#[doc = "USART_EXT Control B"] +pub mod ctrlb; +#[doc = "CTRLC register accessor: an alias for `Reg<CTRLC_SPEC>`"] +pub type CTRLC = crate::Reg<ctrlc::CTRLC_SPEC>; +#[doc = "USART_EXT Control C"] +pub mod ctrlc; +#[doc = "BAUD register accessor: an alias for `Reg<BAUD_SPEC>`"] +pub type BAUD = crate::Reg<baud::BAUD_SPEC>; +#[doc = "USART_EXT Baud Rate"] +pub mod baud; +#[doc = "BAUD_FRAC_MODE register accessor: an alias for `Reg<BAUD_FRAC_MODE_SPEC>`"] +pub type BAUD_FRAC_MODE = crate::Reg<baud_frac_mode::BAUD_FRAC_MODE_SPEC>; +#[doc = "USART_EXT Baud Rate"] +pub mod baud_frac_mode; +#[doc = "BAUD_FRACFP_MODE register accessor: an alias for `Reg<BAUD_FRACFP_MODE_SPEC>`"] +pub type BAUD_FRACFP_MODE = crate::Reg<baud_fracfp_mode::BAUD_FRACFP_MODE_SPEC>; +#[doc = "USART_EXT Baud Rate"] +pub mod baud_fracfp_mode; +#[doc = "BAUD_USARTFP_MODE register accessor: an alias for `Reg<BAUD_USARTFP_MODE_SPEC>`"] +pub type BAUD_USARTFP_MODE = crate::Reg<baud_usartfp_mode::BAUD_USARTFP_MODE_SPEC>; +#[doc = "USART_EXT Baud Rate"] +pub mod baud_usartfp_mode; +#[doc = "RXPL register accessor: an alias for `Reg<RXPL_SPEC>`"] +pub type RXPL = crate::Reg<rxpl::RXPL_SPEC>; +#[doc = "USART_EXT Receive Pulse Length"] +pub mod rxpl; +#[doc = "INTENCLR register accessor: an alias for `Reg<INTENCLR_SPEC>`"] +pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>; +#[doc = "USART_EXT 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 = "USART_EXT 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 = "USART_EXT Interrupt Flag Status and Clear"] +pub mod intflag; +#[doc = "STATUS register accessor: an alias for `Reg<STATUS_SPEC>`"] +pub type STATUS = crate::Reg<status::STATUS_SPEC>; +#[doc = "USART_EXT Status"] +pub mod status; +#[doc = "SYNCBUSY register accessor: an alias for `Reg<SYNCBUSY_SPEC>`"] +pub type SYNCBUSY = crate::Reg<syncbusy::SYNCBUSY_SPEC>; +#[doc = "USART_EXT Synchronization Busy"] +pub mod syncbusy; +#[doc = "DATA register accessor: an alias for `Reg<DATA_SPEC>`"] +pub type DATA = crate::Reg<data::DATA_SPEC>; +#[doc = "USART_EXT Data"] +pub mod data; +#[doc = "DBGCTRL register accessor: an alias for `Reg<DBGCTRL_SPEC>`"] +pub type DBGCTRL = crate::Reg<dbgctrl::DBGCTRL_SPEC>; +#[doc = "USART_EXT Debug Control"] +pub mod dbgctrl; |
