Index: Timers.c =================================================================== diff -u -r7ff7e715f7a15da5f4055b33e186d58cf96fe909 -rb28e0e05a9632cc46fc12378f2993a69d861a4cb --- Timers.c (.../Timers.c) (revision 7ff7e715f7a15da5f4055b33e186d58cf96fe909) +++ Timers.c (.../Timers.c) (revision b28e0e05a9632cc46fc12378f2993a69d861a4cb) @@ -31,9 +31,8 @@ /*********************************************************************//** * @brief * The initTimers function initializes the Timers module. - * @details - * Inputs: msTimerCount - * Outputs: msTimerCount + * @details Inputs: msTimerCount + * @details Outputs: msTimerCount * @return none *************************************************************************/ void initTimers( void ) @@ -44,9 +43,8 @@ /*********************************************************************//** * @brief * The incMSTimerCount function increments the ms timer count. - * @details - * Inputs: msTimerCount - * Outputs: msTimerCount + * @details Inputs: msTimerCount + * @details Outputs: msTimerCount * @return none *************************************************************************/ void incMSTimerCount( void ) @@ -57,9 +55,8 @@ /*********************************************************************//** * @brief * The getMSTimerCount function returns the current ms timer count. - * @details - * Inputs: msTimerCount - * Outputs: none + * @details Inputs: msTimerCount + * @details Outputs: none * @return msTimerCount as a U32 *************************************************************************/ U32 getMSTimerCount( void ) @@ -71,9 +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 - * Outputs: none + * @details Inputs: msTimerCount + * @details 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 @@ -109,9 +105,8 @@ * @brief * The calcTimeSince function calculates the time (in ms) from a given start * time until now. - * @details - * Inputs: msTimerCount - * Outputs: none + * @details Inputs: msTimerCount + * @details Outputs: none * @param startMSCount the ms count at the start of the period * @return ms since given start time *************************************************************************/ @@ -137,9 +132,8 @@ * @brief * The calcTimeBetween function calculates the time (in ms) from a given start * time until a given end time. - * @details - * Inputs: none - * Outputs: none + * @details Inputs: none + * @details Outputs: none * @param startMSCount the ms count at the start of the period * @param endMSCount the ms count at the end of the period * @return ms between two given times