Aguijón Software Libraries  1.0
Documentation for the included Libraries
 All Files Functions Variables Typedefs Enumerations Enumerator Macros
EEPROM.h
Go to the documentation of this file.
1 //EEPROM.h
2 
3 #define EEPROM_SIZE 0x007F
4 
5 #define EEPROM_WRITE 0x00A0
6 
7 #define EEPROM_READ 0x00A1
8 
9 unsigned char read_EEPROM(unsigned char address);
10 int write_EEPROM(unsigned char address, unsigned char to_write);
11 int test_EEPROM(void);