/* * Timers.h * * Created on: Aug 1, 2024 * Author: fw */ #ifndef __TIMERS_H__ #define __TIMERS_H__ #include "BLCommon.h" void initTimers( void ); void incMSTimerCount( void ); U32 getMSTimerCount( void ); BOOL didTimeout( U32 startMSCount, U32 timeoutPeriod ); #endif