Hi Syf,
You can directly ready the EEPROM memory location as shown below
void read_eeprom(void)
{
unsigned int eepromData;
eepromData = *(unsigned int*)(0x800);
}
in which "0x800" is the EEPROM memory location from where you want to read the data.
Check the attached file, for the example of writing EEPROM memory
Message Edited by nandu on 2009-07-28 05:30 AM