OS_Ttimer_Continue ()
Continue current task's timer's counting after pause.
To use task timers you need to define OS_ENABLE_TTIMERS in OSAcfg.h. Size of current task's timers is set by OS_TTIMER_SIZE constant
Allowed only in task and functions called by task (any depth)
no
nothing
void Task (void) { for (;;) { /*...*/ OS_Ttimer_Pause(); /*...*/ OS_Ttimer_Continue(); /*...*/ } }