FreeRTOS - Task Scheduling
What is the key difference between
vTaskDelay() and vTaskDelayUntil() in FreeRTOS?vTaskDelay() and vTaskDelayUntil() in FreeRTOS?vTaskDelay() behaviorvTaskDelay() delays a task for a relative time from the moment it is called, which can cause drift in periodic tasks.vTaskDelayUntil() behaviorvTaskDelayUntil() delays a task until a fixed point in time, maintaining a consistent periodic rate without drift.vTaskDelayUntil() provides a fixed periodic delay, while vTaskDelay() provides a relative delay. -> Option B15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions