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
Hi,
i am using CCS version 8.0.0.16. i have downloaded LWIP demo code from this link https://processors.wiki.ti.com/index.php/HALCoGen_Ethernet_Driver_and_lwIP_Integration_Demonstration.
After compilation of TMS570LS31x project into ccs and warning i am getting like below,
Description Resource Path Location Type
#10210-D null: creating ".sysmem" section with default size of 0x800; use the -heap option to change the default size Build-TMS570LS31x C/C++ Problem
Is this warning will be a big problem? can you please guide me to solve this issue ?
i have work on UDP.. is there any sample code ...? can you please provide us.
Thanks & Regards,
Anand Kumar
Hello Anand,
I don't UDP example. This is nice place to get UDP and TCP example:
github.com/.../unit
Hi Anand,
The C/C++ compiler uses an uninitialized section .sysmem for the C run-time memory pool used by malloc(). The size of this memory pool is set at link time by using the --heap_size option. The linker creates the .sysmem section only if there is a .sysmem section in an input file.
If --help_size is not used in linker cmd file or not included in CCS like options, 0x800 will be used as default for .sysmem.