FreeRTOS - Task Creation and Management
Given the code:
What will be printed if the system runs out of heap memory?
BaseType_t res = xTaskCreate(
vTask, "T2", 500, NULL, 5, NULL);
if(res == pdPASS) printf("Success\n"); else printf("Fail\n");What will be printed if the system runs out of heap memory?
