/************************************************************************** * * Copyright (c) 2019-2019 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file Timers.h * * @date 25-Sep-2019 * @author S. Nash * * @brief header file for Timers service . * **************************************************************************/ #ifndef __TIMERS_H__ #define __TIMERS_H__ #include "Common.h" // ********** public function prototypes ********** void initTimers( void ); void incMSTimerCount( void ); U32 getMSTimerCount( void ); BOOL didTimeout( U32 startMSCount, U32 timeoutPeriod ); #endif