Hi Guys
I want to hardcode some values at 0x1800. So I did:
#pragma DATA_SECTION (version, ".infoD")
#pragma RETAIN (version)
The second line, retain(version) will cause a CCS data verification error on debug mode. Sure, the whole program will compile and generate me a hex binary, but why is CCS bugging out?
If I comment this line out, it will work, but then I don't get my data insertion at .infoD section.
What's going on? I just encounter this problem immediately.
Clean/Rebuild project doesn't do anything.