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 - EEPROM Control Register"]
    pub eecr: crate::Reg<eecr::EECR_SPEC>,
    #[doc = "0x01 - EEPROM Data Register"]
    pub eedr: crate::Reg<eedr::EEDR_SPEC>,
    #[doc = "0x02 - EEPROM Address Register Low Bytes"]
    pub eear: crate::Reg<eear::EEAR_SPEC>,
}
#[doc = "EEAR register accessor: an alias for `Reg<EEAR_SPEC>`"]
pub type EEAR = crate::Reg<eear::EEAR_SPEC>;
#[doc = "EEPROM Address Register Low Bytes"]
pub mod eear;
#[doc = "EECR register accessor: an alias for `Reg<EECR_SPEC>`"]
pub type EECR = crate::Reg<eecr::EECR_SPEC>;
#[doc = "EEPROM Control Register"]
pub mod eecr;
#[doc = "EEDR register accessor: an alias for `Reg<EEDR_SPEC>`"]
pub type EEDR = crate::Reg<eedr::EEDR_SPEC>;
#[doc = "EEPROM Data Register"]
pub mod eedr;