FreeRTOS - Task Creation and Management
Given this code snippet:
What is the problem with this code?
TaskHandle_t xHandle = NULL; xTaskCreate(TaskFunction, "Task", 1000, NULL, 1, &xHandle); vTaskDelete(xHandle);
What is the problem with this code?
