Hello,
I am using CCS 4.2.3 to work on a C project for the F2833x MCUs. I have created a RTSC platform and defined the memory map. There, the Flash area is defined as Code/Data Read/Execute, and the SARAM area is defined as Code/Data Read/Write/Execute. I did not create a cmd file.
When compiling my project, global and static variables are placed in Flash and remain uninitialized (0xFFFF) and cannot be changed during runtime (since the memory is Flash and not RAM).
I have read "C28x Compiler - Understanding Linking" and the document recommends to place initalized global and static variables in Flash. How would they still be modified at runtime then?
Thank you,
Cristian