OSA : OS_Oldtimer_Stop

OS_Oldtimer_Stop (timer_id)

Using old style static timers is not recommended. Use static timers instead.

Stop old style static timer. Timeout flag will be set.

Call allowed:

Everywhere

Parameters:

timer_id old style static timer's identifier.

Returns:

nothing

Example:

void Task (void)
{
    for (;;) {
        /*...*/
        OS_Oldtimer_Stop(3);    // Stop static timer #3
        /*...*/
    }
}

Old style name

OS_StopTimer

See also