English
Language : 

ZAURA Datasheet, PDF (89/99 Pages) –
ZAURA RF Wireless Library
Programmer’s Reference Manual
77
Timer API Functions
The ZAURA RF Wireless Library uses TIMER 1 for internal operations;
applications must not use TIMER 1. These APIs expose generic timer
functions based off of the external 32.768 kHz crystal. The tick period is
approximately 30.5 µs.
ZAURA_RF_TickDelay
Description The ZAURA_RF_TickDelay implements a delay of Delay * 30.5µs.
The maximum delay is approximately 1 second (0x7FFF). Control is
not returned to the caller until the specified delay has expired.
Syntax void ZAURA_RF_TickDelay(UINT16 Delay)
Parameters
Delay
The number of ticks to delay.
Returns
See Also
Example
None.
ZAURA_RF_ms_TO_TICKS
/*
* Wait 10 timer ticks (approximately 305µs)
*/
ZAURA_RF_TickDelay( 10 );
RM006003-1011
Timer API Functions