void OSTimeTick (void);
Description
- This function takes care of the processing necessary at the occurrence of each system tick. This
function is called from the BIOS timer interrupt ISR, but can also be called from a high priority
task. The user definable
OSTimeTickHook() is called from this function and allows for extra
application specific processing to be performed at each tick. Since OSTimeTickHook()
is called during an interrupt, it should perform minimal processing as it will directly affect interrupt
latency.
Library
- OS_TIME.C
See Also
- OSTimeTickHook