This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hello!
My program worked in CCSV6 with TI compiler option(TI v15.12.3.LTS). After changing the compiler option from TI to GNU(GNU v5.3.0.244). I met a lot of warning message. One warning message is "ignoring #pragma PERSISTENT [-Wunknown-pragmas]" The target device is MSP430FR6989. The variable will be written to FRAM.
Header file is
" #pragma PERSISTENT (fram_write_mark)
UBYTE fram _write_mark= 0;".
How can I resolve it? Your help is very appreciated.
seogje cho said:How can I resolve it?
Unfortunately, there is no solution in this case. The MSP430 gcc compiler has no mechanism by which you can get the same functionality as the TI compiler #pragma PERSISTENT.
Thanks and regards,
-George
I apologize. I was wrong when I said ...
George Mock said:The MSP430 gcc compiler has no mechanism by which you can get the same functionality as the TI compiler #pragma PERSISTENT.
I searched again, and found the documentation for all the MSP430 variable attributes, including persistent.
Thanks and regards,
-George
seogje cho said:but I met another error message.
The message is
section '.text will not fit in region 'ROM'
section __interrupt_vector_40 loaded at [0000ffde,0000ffdf] overlaps section .text loaded at [00004904,000110db]
region 'ROM' overflowed by 4444 bytes
This usually means your program is too big for your device. I cannot give more specific advice, because that requires detailed knowledge of your device and the linker script you use. That linker script probably comes from TI, though not the compiler team that monitors this forum. Those experts are over in the MSP device forum. I recommend you start a new thread there. Or, if you prefer, I can move this thread to that forum.
Thanks and regards,
-George