#ifndef __TIMERS_H__ #define __TIMERS_H__ #include "BLCommon.h" /** * @defgroup Timers Timers * @brief Timers service unit. Provides timer utility functions based on * a 1ms timer counter incremented by TaskTimer.c. * * @addtogroup Timers * @{ */ // ********** public function prototypes ********** void initTimers( void ); void incMSTimerCount( void ); U32 getMSTimerCount( void ); BOOL didTimeout( U32 startMSCount, U32 timeoutPeriod ); /**@}*/ #endif