hi
I'm using psoc 5lp, and I'm using EEPROM in my project
I have very basic problem with EEPROM, that I can't write or read
I wrote this code, note sure about its problem:
EEPROM_Start();
EEPROM_WriteByte(0xaa, 7);
int a = 0;
a = EEPROM_ReadByte(7);
and I have another question too, in "EEPROM_WriteByte(0xaa, 7)" function, did I wrote address true? how sould I address?
Solved! Go to Solution.
sorry! another question
in "EEPROM_WriteByte(0xaa, 7)" function, how should I address? (from which index should I begin)