FreeRTOS - Memory Management
Given the following code using heap_2:
void *ptr1 = pvPortMalloc(100); void *ptr2 = pvPortMalloc(200); pvPortFree(ptr1); void *ptr3 = pvPortMalloc(50);What is the expected behavior of ptr3 allocation?
