Content originally posted in LPCWare by Rob65 on Tue Apr 17 09:07:36 MST 2012
This is very strange.
The FreeRTOS tick is created using the systick timer running at 1 msec
and vTaskDelayUntil waits until the tick counter is at the given value (i.e. 10 msec after you read the tick timer.
If your task runs at a rate that is shorter than 10 msec, there must be a problem with your program.
Rob