Tool/software: TI C/C++ Compiler
Hi Ti Experts,
I am trying to create Heap memory, until unless i create .sysmem section followed by alocation of that much memory, i am not seeing .sysmem creation.
Can you please help me if there is a way to directly creating .sysmem from the linker command file.
Below is the one which i have now. Though i updated my linker command file to define the heap size with out the below part i am not able to create .sysmem.
typedef struct heap_pack
{
size_t packet_size; /* number of bytes */
struct pack *size_ptr; /* next elem in free list */
} PACKET;
#pragma DATA_SECTION(_sys_memory, ".sysmem")
PACKET _sys_memory[1];
Regards,
Somesh