FreeRTOS - Task Creation and Management
Analyze the following code:
What is the state of
TaskHandle_t xHandle = NULL; xTaskCreate(TaskFunction, "Task1", 1000, NULL, 1, &xHandle); vTaskDelete(xHandle);
What is the state of
xHandle after vTaskDelete(xHandle); is executed?