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.

CCS/MSP430FR2633: Warning: compression "lzss" is ignored

Part Number: MSP430FR2633

Tool/software: Code Composer Studio

I am receiving the the following warning for the code below:

"#10229-D null: output section ".data" refers to load symbol "$C$SL1" and hence cannot be compressed; compression "lzss" is ignored"

From what I have read, this warning can probably be ignored. One post suggested moving .cinit out of any group, which did not correct the issue (it gave another warning that .cinit location had defaulted).

I am using the default linker file provided when generating code from CapTIvate Design Center. Is there an issue here? Is there some way to suppress this warning?

char * MyValues[6]={"2","1","3","5","4","6"};

void HW_TERM_ReportValues(void)
{
uint8_t i = 0;
uint8_t str[20];
for(i=0; i < 6; i++)
{
sprintf((char *)str, "Val=%s\n", MyValues[i]);
HW_TERM_Print(str);
}
}