Hi,
I am sorry if this question has already been asked...
I am using CCS6 to program an MSP430F2132 in C language. I use an "eabi (ELF)" output format and I cannot write in the C segment (0x1040). I also tried to do it in a new project in order to avoid an issue due to a wrong setting... but I still have the issue...
Here is my code (I use lnk_msp430f2132.cmd as Linker command file) :
#pragma DATA_SECTION(VARIABLE, ".infoC")
const unsigned int VARIABLE = 0x1234 ;
But I cannot find the value "0x1234" at 0x1040... Does anyone has any idea?
Thank you in advance.