pub type EEPROM = Periph<RegisterBlock, 63>;Expand description
EEPROM
Aliased Type§
struct EEPROM { /* private fields */ }Trait Implementations§
Source§impl EepromOps<Atmega> for EEPROM
impl EepromOps<Atmega> for EEPROM
const CAPACITY: u16 = 1_024u16
Source§fn raw_read_byte(&self, address: u16) -> u8
fn raw_read_byte(&self, address: u16) -> u8
Read a single byte from offset
address. Does not do a bounds check. Read moreSource§fn raw_write_byte(&mut self, address: u16, data: u8)
fn raw_write_byte(&mut self, address: u16, data: u8)
Erase and write a single byte at offset
address. Does not do a bounds check. Read moreSource§fn raw_erase_byte(&mut self, address: u16)
fn raw_erase_byte(&mut self, address: u16)
Erase a single byte at offset
address. Does not do a bounds check. Read more