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/i2cm.rs | |
| download | samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip | |
Initial commit
Diffstat (limited to 'src/sercom0/i2cm.rs')
| -rw-r--r-- | src/sercom0/i2cm.rs | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/sercom0/i2cm.rs b/src/sercom0/i2cm.rs new file mode 100644 index 0000000..8aa217d --- /dev/null +++ b/src/sercom0/i2cm.rs @@ -0,0 +1,44 @@ +#[doc = "CTRLA register accessor: an alias for `Reg<CTRLA_SPEC>`"] +pub type CTRLA = crate::Reg<ctrla::CTRLA_SPEC>; +#[doc = "I2CM Control A"] +pub mod ctrla; +#[doc = "CTRLB register accessor: an alias for `Reg<CTRLB_SPEC>`"] +pub type CTRLB = crate::Reg<ctrlb::CTRLB_SPEC>; +#[doc = "I2CM Control B"] +pub mod ctrlb; +#[doc = "BAUD register accessor: an alias for `Reg<BAUD_SPEC>`"] +pub type BAUD = crate::Reg<baud::BAUD_SPEC>; +#[doc = "I2CM Baud Rate"] +pub mod baud; +#[doc = "INTENCLR register accessor: an alias for `Reg<INTENCLR_SPEC>`"] +pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>; +#[doc = "I2CM 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 = "I2CM 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 = "I2CM 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 = "I2CM Status"] +pub mod status; +#[doc = "SYNCBUSY register accessor: an alias for `Reg<SYNCBUSY_SPEC>`"] +pub type SYNCBUSY = crate::Reg<syncbusy::SYNCBUSY_SPEC>; +#[doc = "I2CM Synchronization Busy"] +pub mod syncbusy; +#[doc = "ADDR register accessor: an alias for `Reg<ADDR_SPEC>`"] +pub type ADDR = crate::Reg<addr::ADDR_SPEC>; +#[doc = "I2CM Address"] +pub mod addr; +#[doc = "DATA register accessor: an alias for `Reg<DATA_SPEC>`"] +pub type DATA = crate::Reg<data::DATA_SPEC>; +#[doc = "I2CM Data"] +pub mod data; +#[doc = "DBGCTRL register accessor: an alias for `Reg<DBGCTRL_SPEC>`"] +pub type DBGCTRL = crate::Reg<dbgctrl::DBGCTRL_SPEC>; +#[doc = "I2CM Debug Control"] +pub mod dbgctrl; |
