Hi,
I'm using the mcu_plus_sdk_243x.
In a file C:\ti\mcu_plus_sdk_am243x_08_06_00_43\source\kernel\freertos\FreeRTOS-Kernel\portable\MemMang\heap_4.c
I found a function inside which an undefined variable - ucHeap
static void prvHeapInit( void ) /* PRIVILEGED_FUNCTION */
{
/* Ensure the heap starts on a correctly aligned boundary. */
uxAddress = ( size_t ) ucHeap;
}
the linker says '......./heap_4.c:350: undefined reference to `ucHeap'
What is this variable ?
Which value is better to assign to it ?
Thanks,
Eli