/
OSTimeTick
OSTimeTick
Description
Notifies the kernel that a tick has just occurred, and that time delays and timeouts need to be updated. This function must be called from the tick ISR.
Files
os.h/os_time.c
Prototype
void OSTimeTick (void)
Arguments
None
Returned Value
None
Required Configuration
None
Callers
Tick ISR.
Notes/Warnings
None
Example Usage
OSTimeTick() example usage
void MyTickISR (void) { /* Clear interrupt source */ OSTimeTick(); : : }
, multiple selections available,
Related content
OSTimeTickHook
OSTimeTickHook
More like this
OSTimeSet
OSTimeSet
More like this
OSTimeDynTick
OSTimeDynTick
More like this
OSTimeGet
OSTimeGet
More like this
OS_DynTickSet
OS_DynTickSet
More like this
OS_DynTickGet
OS_DynTickGet
More like this