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: TI C/C++ Compiler
Hi,
I have declared few strings and have some functions to convert float to string and int to string etc.
I am getting the below error(Image attached). in following cases.
Can you tell me, what's wrong? Here is my Display Function.
void Display(char msg[]) { SCI_writeCharArray(SCID_BASE, (uint16_t*) msg, strlen(msg)); }
Description Resource Path Location Type
<a href="http://processors.wiki.ti.com/index.php/Compiler/diagnostic_messages/10099">#10099-D</a> program will not fit into available memory. run placement with alignment/blocking fails for section ".data" size 0xae page 1. Available memory ranges: 2837xD_RAM_lnk_cpu1.cmd /_CPU1_Eload Bringup line 64 C/C++ Problem
Regards
Vishal
Vishal,
It looks like your .data section does not have memory allocated. You will need to assign more memory to that section. Follow the steps detailed here:
Regards,
Ozino