pub type EEPROM = Periph<RegisterBlock, 60>;Expand description
EEPROM
Aliased Type§
struct EEPROM { /* private fields */ }Trait Implementations§
Source§impl EepromOps<Attiny> for EEPROM
impl EepromOps<Attiny> for EEPROM
const CAPACITY: u16 = 512u16
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