#include <nitro/os.h>
OSTick OS_GetTick( void );
This function acquires the tick value. Tick must be initialized with OS_InitTick() before calling this function.
The OSTick tick type is u64.
Internally, this functioncreates a tick value from the 16-bit timer counter value and the timer's interrupt count counter.
None
The tick value.
OS_InitTick, OS_SetTick, OS_GetTickLo
02/25/2004 Changed systemClock -> tick
02/23/2004 Changed the system clock value to a full 64 bit
02/04/2004 Initial Version