/*********************************************************************** * * Copyright Diality, Inc. 2019-2020. All Rights Reserved. * 181 Technology, Ste. 150 * Irvine, CA 92618 * * Project Denali * * @file Timers.h * * @brief header file for Timers service . * * @date 25-Sep-2019 * *************************************************************************/ #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