mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Fix description of vTaskDelay (#363)
This commit is contained in:
parent
46338705bd
commit
1d86b973aa
|
@ -757,7 +757,7 @@ void vTaskDelete( TaskHandle_t xTaskToDelete ) PRIVILEGED_FUNCTION;
|
||||||
* period of 100 ticks will cause the task to unblock 100 ticks after
|
* period of 100 ticks will cause the task to unblock 100 ticks after
|
||||||
* vTaskDelay() is called. vTaskDelay() does not therefore provide a good method
|
* vTaskDelay() is called. vTaskDelay() does not therefore provide a good method
|
||||||
* of controlling the frequency of a periodic task as the path taken through the
|
* of controlling the frequency of a periodic task as the path taken through the
|
||||||
* code, as well as other task and interrupt activity, will effect the frequency
|
* code, as well as other task and interrupt activity, will affect the frequency
|
||||||
* at which vTaskDelay() gets called and therefore the time at which the task
|
* at which vTaskDelay() gets called and therefore the time at which the task
|
||||||
* next executes. See xTaskDelayUntil() for an alternative API function designed
|
* next executes. See xTaskDelayUntil() for an alternative API function designed
|
||||||
* to facilitate fixed frequency execution. It does this by specifying an
|
* to facilitate fixed frequency execution. It does this by specifying an
|
||||||
|
|
Loading…
Reference in a new issue