FreeRTOS - RTOS Fundamentals
Identify the error in this FreeRTOS code snippet for a hard real-time task:
void vTaskFunction(void *pvParameters) {
while(1) {
// Critical processing
vTaskDelay(1000);
}
}
What is the problem?