FreeRTOS Operating System (8)

FreeRTOS Operating System (8)

Delay Functions Classification of delay functions: Relative delay: vTaskDelay Absolute delay: vTaskDelayUntil Relative delay Absolute delay Relative delay means that each delay starts from the task execution function vTaskDelay() and ends after the specified delay time. Absolute delay means that the task calls the vTaskDelayUntil() function at fixed intervals, in other words, the task executes … Read more