Command disabled: backlink
 
Available Languages?:

OSA : OS_Qtimer_IsRun

bool OS_Qtimer_IsRun (qtimer)

Check if timer qtimer is running (present in queue).

OS_ENABLE_QTIMERS constant must be defined in OSAcfg.h. Size of timers is set by OS_QTIMER_SIZE constant

Call allowed:

Everywhere

Parameters:

qtimer Descriptor of timer. Variable of OST_QTIMER type. Contains timer counter, timer state flags and pointer to next timer in list. For PIC16, can only be allocated in bank0 or bank1

Returns:

false timer is stopped or paused
true timer is running

Example:

OST_QTIMER qtimer;
 
void Task (void)
{
    for (;;) {
        /*...*/
        if (!OS_Qtimer_IsRun(qtimer))     // if timer is not running
            OS_Qtimer_Run(qtimer, 100);   // then run it
        /*...*/
    }
}

See also

 
en/osa/ref/allservices/os_qtimer_isrun.txt · Last modified: 07.10.2010 13:57 (external edit)
 
Creative Commons License Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki