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

cross mob
ViFo_3580266
Level 1
Level 1
Welcome!

Hello,

I'm trying to use the emulated eeprom in a project, and I noticed that when I try to write something on the EM_EEPROM it would change the values of my global variables and break my code.

When I was debugging i noticed on the function Cy_Em_EEPROM_Write, the variables address are overlapping the other variable addresses:

pastedImage_0.png

pastedImage_1.png

wearLevelingFactor 0x00000001 0x2000024C (All) unsigned long

emEepromRowAddr 0x00000001 0x2000024C (All) unsigned long

On the pictures you can see that emEepromRowAddr is getting the same address than context->wearLevelingFactor

Does anyone know what could be the issue that is causing this?

Thank you!

0 Likes
1 Solution

Sorry guys, I found the problem, it was a buffer defined inside my main it was a int with 800 positions, 3.2 kbytes, I only have 4kb. It was overflowing my ram, since it was inside my main, it wasn't giving me any error or warning.

Thank you, for all the help!

View solution in original post

0 Likes
4 Replies