FreeRTOS - Task Scheduling
Identify the error in this code snippet intended to delay a task for 200 milliseconds:
void Task(void *params) {
while(1) {
doWork();
vTaskDelay(200);
}
}