internal eeprom problem

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

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?

0 Likes
1 Solution

The first usable eeprom address is 0x0000.

Bob

View solution in original post

0 Likes
2 Replies
Anonymous
Not applicable

sorry! another question
in "EEPROM_WriteByte(0xaa, 7)" function, how should I address? (from which index should I begin)

0 Likes

The first usable eeprom address is 0x0000.

Bob

0 Likes