Home |
RTKernel-32 Programming Manual Function RTKDelayUntil |
Function RTKDelayUntilTasks that want to continue running at a certain time can use RTKDelayUntil: void RTKDelayUntil(RTKTime Ticks); ParametersTicksSpecifies the absolute time for the task to continue. RTKDelay, on the other hand, interprets its parameter as a time interval during which the task should not run. RTKDelayUntil can be used to implement cyclic tasks that run in a fixed time frame (see Advanced Topics, Cyclic Tasks (Timer)).
|