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
Dear Sir,
During linking time , I am getting like :;;;
Description Resource Path Location Type
#10099-D program will not fit into available memory. placement with alignment fails for section "ALL_FRAM" size 0x1df4 . Available memory ranges: lnk_msp430fr2422.cmd /Surge_Final_3Channel_Polling line 134 C/C++ Problem.
If i add any function .Which shows above mention error.
Sir,
During linking time , I am getting like :;;;
Description Resource Path Location Type
#10099-D program will not fit into available memory. placement with alignment fails for section "ALL_FRAM" size 0x1df4 . Available memory ranges: lnk_msp430fr2422.cmd /Surge_Final_3Channel_Polling line 134 C/C++ Problem.
I have used memory; MSP430: Flash/FRAM usage is 7306 bytes. RAM usage is 398 bytes.
Briefly: Your program is too big, and won't fit into the code memory (FRAM). Data sheet (SLASEE5C) Table 6-19 shows the memory layout, and Code memory is only 7.25KB.
You may gain some by using the Optimizer (-Os). Otherwise, you need to find some code you don't need.
Is using the FR2422 a requirement? I think it has some siblings with larger memory.
**Attention** This is a public forum