FreeRTOS - Memory Management
Given this FreeRTOS code snippet, what will happen if pvPortMalloc returns NULL?
void *ptr = pvPortMalloc(100);
if(ptr != NULL) {
// Use memory
} else {
// Handle error
}