1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#[doc = r"Register block"] #[repr(C)] pub struct RegisterBlock { #[doc = "0x00 - PORT L Input Pins"] pub pinl: crate::Reg<pinl::PINL_SPEC>, #[doc = "0x01 - PORT L Data Direction Register"] pub ddrl: crate::Reg<ddrl::DDRL_SPEC>, #[doc = "0x02 - PORT L Data Register"] pub portl: crate::Reg<portl::PORTL_SPEC>, } #[doc = "DDRL register accessor: an alias for `Reg<DDRL_SPEC>`"] pub type DDRL = crate::Reg<ddrl::DDRL_SPEC>; #[doc = "PORT L Data Direction Register"] pub mod ddrl; #[doc = "PINL register accessor: an alias for `Reg<PINL_SPEC>`"] pub type PINL = crate::Reg<pinl::PINL_SPEC>; #[doc = "PORT L Input Pins"] pub mod pinl; #[doc = "PORTL register accessor: an alias for `Reg<PORTL_SPEC>`"] pub type PORTL = crate::Reg<portl::PORTL_SPEC>; #[doc = "PORT L Data Register"] pub mod portl;