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