OS_Stimer_Wait (stimer_id)
Wait for static timer to overflow.
Number of static timers OS_STIMERS (1..32) must be specified in OSAcfg.h. Size of static timers is set by OS_STIMER_SIZE constant
Only in task
stimer_id |
Static timer identifier. Number and size of static timers are set in OSAcfg.h with OS_STIMERS and OS_STIMER_SIZE constants |
nothing
void Task (void) { for (;;) { /*...*/ OS_Stimer_Run(4, 200); OS_Stimer_Wait(4); // Wait 200 ticks /*...*/ } }
OS_WaitSTimer