Index: firmware/App/Services/Timers.c =================================================================== diff -u -rabb9687e52d9db5df1abe7626ba04a6d431ba823 -r5acce83ec629eff9621c0193fae57b7b63ad8de8 --- firmware/App/Services/Timers.c (.../Timers.c) (revision abb9687e52d9db5df1abe7626ba04a6d431ba823) +++ firmware/App/Services/Timers.c (.../Timers.c) (revision 5acce83ec629eff9621c0193fae57b7b63ad8de8) @@ -1,12 +1,26 @@ -/* - * Timers.c - * - * Created on: Aug 1, 2024 - * Author: fw - */ +/************************************************************************** +* +* Copyright (c) 2024-2026 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.c +* +* @author (last) Dara Navaei +* @date (last) 21-Jan-2026 +* +* @author (original) Dara Navaei +* @date (original) 01-Aug-2024 +* +***************************************************************************/ #include "Timers.h" +/** + * @addtogroup Timers + * @{ + */ // ********** private definitions ********** @@ -16,9 +30,9 @@ /*********************************************************************//** * @brief - * The initTimers function initializes the Timers module. - * @details Inputs: msTimerCount - * @details Outputs: msTimerCount + * The initTimers function initializes the Timers unit. + * @details \b Inputs: none + * @details \b Outputs: msTimerCount * @return none *************************************************************************/ void initTimers( void ) @@ -29,8 +43,8 @@ /*********************************************************************//** * @brief * The incMSTimerCount function increments the ms timer count. - * @details Inputs: msTimerCount - * @details Outputs: msTimerCount + * @details \b Inputs: msTimerCount + * @details \b Outputs: msTimerCount * @return none *************************************************************************/ void incMSTimerCount( void ) @@ -41,9 +55,9 @@ /*********************************************************************//** * @brief * The getMSTimerCount function returns the current ms timer count. - * @details Inputs: msTimerCount - * @details Outputs: none - * @return msTimerCount as a U32 + * @details \b Inputs: msTimerCount + * @details \b Outputs: none + * @return The current 32-bit millisecond timer count. *************************************************************************/ U32 getMSTimerCount( void ) { @@ -54,8 +68,8 @@ * @brief * The didTimeout function determines whether a timeout has occurred between * a given start count and a given timeout period (in ms). - * @details Inputs: msTimerCount - * @details Outputs: none + * @details \b Inputs: msTimerCount + * @details \b Outputs: none * @param startMSCount the ms count at the start of the timeout period * @param timeoutPeriod the period for the timeout (in ms) * @return TRUE if a timeout has occurred, FALSE if not @@ -87,6 +101,4 @@ return result; } - - - +/**@}*/