FreeRTOS - Task Creation and Management
Find the problem in this FreeRTOS task function:
void TaskC(void *pvParameters) {
while(1) {
// Do work
}
vTaskDelete(NULL);
}