Hi,
I am programming NXP (S12ZVC) and I have EEPROM(Internal) problem.I could not write any data to EEPROM (I checked on CW memory monitoring). I used IEE component and I used these methods SetByte() GetByte() method. Do I need to change the MCU settings?I tried a very simple code snippet but could not save it to EEPROM. This code represent below. I could not read on CW memory monitoring. Whats the problem? Could you help me..
CODE:
byte Data;
void main (void)
{
Data = 28;
IEE1_SetByte(EEPROMAddress,Data);
IEE1_GetByte(EEPROMAddress,&Data);
}