Command disabled: backlink
 
Available Languages?:

OSA : OS_Dtimer_Run

OS_Dtimer_Run (dtimer, newtime)

Start counting dynamic timer for time newtime. Timeout flag is cleared.

OS_ENABLE_DTIMERS constant must be defined in OSAcfg.h. Size of dynamic timers is set by OS_DTIMER_SIZE constant

Call allowed:

Everywhere

Parameters:

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
newtime Value to set in timer's counter in system ticks - call OS_Timer periods. Size of time value must be less than size of timer

Returns:

nothing

Example:

OST_DTIMER dtimer;
 
void Task (void)
{
    OS_Dtimer_Create(dtimer);
    for (;;) {
        /*...*/
        OS_Dtimer_Run (dtimer, 100); // Run dtimer for 100 ticks
        /*...*/
    }
}

Old style name

OS_RunDTimer

See also

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