OS_Dtimer_Wait (dtimer)
Wait for dynamic timer to overflow.
OS_ENABLE_DTIMERS constant must be defined in OSAcfg.h. Size of dynamic timers is set by OS_DTIMER_SIZE constant
Only in task
dtimer |
Descriptor of dynamic timer. Variable of OST_DTIMER type. Contains timer counter, timer state flags and pointer to next timer in list. For PIC16, can only be allocated in bank0 or bank1 |
nothing
OST_DTIMER dtimer; void Task (void) { for (;;) { /*...*/ OS_Dtimer_Run(dtimer, 100); OS_Dtimer_Wait(dtimer); // Wait 100 ticks /*...*/ } }
OS_WaitDTimer