for errata mem#15 it says i cant reliably write and erase data at the locations specified in each sector,so my workaround was to allocate variables at those specific memory addresses and these variables wouldnt do anything so none of my code will be written to it.iam using
uint32_t Bank_0_1 __attribute__((location(0x07FFE4))) __attribute__((retain)) = 0;i do this 16 times for each sector theres 4 word locations not to use each sector.Now when i run the code the debugger fails to launch i imagine i dont have the correct addresses iam not sure if this would be the correct way to workaround the errata.I was thinking maybe i could just create a dummy section in my cmd file using DSECT instead.any input is appreciated