Type Alias EEPROM

Source
pub type EEPROM = Periph<RegisterBlock, 60>;
Expand description

EEPROM

Aliased Type§

struct EEPROM { /* private fields */ }

Trait Implementations§

Source§

impl EepromOps<Attiny> for EEPROM

Source§

const CAPACITY: u16 = 512u16

Source§

fn raw_read_byte(&self, address: u16) -> u8

Read a single byte from offset address. Does not do a bounds check. Read more
Source§

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 more
Source§

fn raw_erase_byte(&mut self, address: u16)

Erase a single byte at offset address. Does not do a bounds check. Read more