os_time_advance

void os_time_advance(int ticks)

Moves the OS time forward by the value specified in ticks. Typically, this is called in one place by the architecture specific OS code (kernel/os/src/arch) timer_handler which is in turn called by the BSP specific code assigned to drive the OS timer tick. See Porting Mynewt OS for details.

Arguments

ArgumentsDescription
ticksNumber of ticks to move the OS time forward.

Returned values

N/A

Notes

Example