Index: Timers.c =================================================================== diff -u -r13c32729e3186ebb5487e41a0cecd4cf15d357eb -r47f8ae76f4eed444ce98feec1635e62394afccf5 --- Timers.c (.../Timers.c) (revision 13c32729e3186ebb5487e41a0cecd4cf15d357eb) +++ Timers.c (.../Timers.c) (revision 47f8ae76f4eed444ce98feec1635e62394afccf5) @@ -32,8 +32,8 @@ * @brief * The initTimers function initializes the Timers module. * @details - * Inputs : none - * Outputs : Timers module initialized. + * Inputs: msTimerCount + * Outputs: msTimerCount * @return none *************************************************************************/ void initTimers( void ) @@ -45,8 +45,8 @@ * @brief * The incMSTimerCount function increments the ms timer count. * @details - * Inputs : none - * Outputs : msTimerCount incremented + * Inputs: msTimerCount + * Outputs: msTimerCount * @return none *************************************************************************/ void incMSTimerCount( void ) @@ -58,9 +58,9 @@ * @brief * The getMSTimerCount function returns the current ms timer count. * @details - * Inputs : msTimerCount - * Outputs : none - * @return msTimerCount + * Inputs: msTimerCount + * Outputs: none + * @return msTimerCount as a U32 *************************************************************************/ U32 getMSTimerCount( void ) { @@ -69,11 +69,11 @@ /*********************************************************************//** * @brief - * The didTimeout function determines whether a timeout has occurred between \n + * 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 + * Inputs: msTimerCount + * 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 @@ -107,11 +107,11 @@ /*********************************************************************//** * @brief - * The calcTimeSince function calculates the time (in ms) from a given start \n + * The calcTimeSince function calculates the time (in ms) from a given start * time until now. * @details - * Inputs : msTimerCount - * Outputs : none + * Inputs: msTimerCount + * Outputs: none * @param startMSCount the ms count at the start of the period * @return ms since given start time *************************************************************************/ @@ -135,11 +135,11 @@ /*********************************************************************//** * @brief - * The calcTimeBetween function calculates the time (in ms) from a given start \n + * The calcTimeBetween function calculates the time (in ms) from a given start * time until a given end time. * @details - * Inputs : none - * Outputs : none + * Inputs: none + * 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