2010-03-07 20:29:18 +01:00
|
|
|
#ifndef eeprom_h
|
|
|
|
#define eeprom_h
|
|
|
|
|
|
|
|
char eeprom_get_char(unsigned int addr);
|
2013-03-12 21:44:22 +01:00
|
|
|
void eeprom_put_char( unsigned int addr, unsigned char new_value );
|
2010-03-07 20:29:18 +01:00
|
|
|
void memcpy_to_eeprom_with_checksum(unsigned int destination, char *source, unsigned int size);
|
|
|
|
int memcpy_from_eeprom_with_checksum(char *destination, unsigned int source, unsigned int size);
|
|
|
|
|
|
|
|
#endif
|