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/port/group.rs | |
| download | samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.tar.gz samc21-0666a6ba1dbd66cf8b93c113e362ccbcd99152a0.zip | |
Initial commit
Diffstat (limited to 'src/port/group.rs')
| -rw-r--r-- | src/port/group.rs | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/port/group.rs b/src/port/group.rs new file mode 100644 index 0000000..d1aabcd --- /dev/null +++ b/src/port/group.rs @@ -0,0 +1,56 @@ +#[doc = "DIR register accessor: an alias for `Reg<DIR_SPEC>`"] +pub type DIR = crate::Reg<dir::DIR_SPEC>; +#[doc = "Data Direction"] +pub mod dir; +#[doc = "DIRCLR register accessor: an alias for `Reg<DIRCLR_SPEC>`"] +pub type DIRCLR = crate::Reg<dirclr::DIRCLR_SPEC>; +#[doc = "Data Direction Clear"] +pub mod dirclr; +#[doc = "DIRSET register accessor: an alias for `Reg<DIRSET_SPEC>`"] +pub type DIRSET = crate::Reg<dirset::DIRSET_SPEC>; +#[doc = "Data Direction Set"] +pub mod dirset; +#[doc = "DIRTGL register accessor: an alias for `Reg<DIRTGL_SPEC>`"] +pub type DIRTGL = crate::Reg<dirtgl::DIRTGL_SPEC>; +#[doc = "Data Direction Toggle"] +pub mod dirtgl; +#[doc = "OUT register accessor: an alias for `Reg<OUT_SPEC>`"] +pub type OUT = crate::Reg<out::OUT_SPEC>; +#[doc = "Data Output Value"] +pub mod out; +#[doc = "OUTCLR register accessor: an alias for `Reg<OUTCLR_SPEC>`"] +pub type OUTCLR = crate::Reg<outclr::OUTCLR_SPEC>; +#[doc = "Data Output Value Clear"] +pub mod outclr; +#[doc = "OUTSET register accessor: an alias for `Reg<OUTSET_SPEC>`"] +pub type OUTSET = crate::Reg<outset::OUTSET_SPEC>; +#[doc = "Data Output Value Set"] +pub mod outset; +#[doc = "OUTTGL register accessor: an alias for `Reg<OUTTGL_SPEC>`"] +pub type OUTTGL = crate::Reg<outtgl::OUTTGL_SPEC>; +#[doc = "Data Output Value Toggle"] +pub mod outtgl; +#[doc = "IN register accessor: an alias for `Reg<IN_SPEC>`"] +pub type IN = crate::Reg<in_::IN_SPEC>; +#[doc = "Data Input Value"] +pub mod in_; +#[doc = "CTRL register accessor: an alias for `Reg<CTRL_SPEC>`"] +pub type CTRL = crate::Reg<ctrl::CTRL_SPEC>; +#[doc = "Control"] +pub mod ctrl; +#[doc = "WRCONFIG register accessor: an alias for `Reg<WRCONFIG_SPEC>`"] +pub type WRCONFIG = crate::Reg<wrconfig::WRCONFIG_SPEC>; +#[doc = "Write Configuration"] +pub mod wrconfig; +#[doc = "EVCTRL register accessor: an alias for `Reg<EVCTRL_SPEC>`"] +pub type EVCTRL = crate::Reg<evctrl::EVCTRL_SPEC>; +#[doc = "Event Input Control"] +pub mod evctrl; +#[doc = "PMUX register accessor: an alias for `Reg<PMUX_SPEC>`"] +pub type PMUX = crate::Reg<pmux::PMUX_SPEC>; +#[doc = "Peripheral Multiplexing n"] +pub mod pmux; +#[doc = "PINCFG register accessor: an alias for `Reg<PINCFG_SPEC>`"] +pub type PINCFG = crate::Reg<pincfg::PINCFG_SPEC>; +#[doc = "Pin Configuration n"] +pub mod pincfg; |
