2 // EEPROM.H: Header file
10 void eeprom_init(void);
11 void eeprom_reset(void);
12 void eeprom_done(void);
13 void eeprom_update(void);
15 uint8 eeprom_byte_read(uint32 offset);
16 uint16 eeprom_word_read(uint32 offset);
17 void eeprom_byte_write(uint32 offset, uint8 data);
18 void eeprom_word_write(uint32 offset, uint16 data);
20 #endif // __EEPROM_H__