Index: Timers.c =================================================================== diff -u -re8828d66e4a76e0590c3f06b7f6235f33df64e80 -raa1221efc98233c54a97a2cbbf7fb1a5a35d385d --- Timers.c (.../Timers.c) (revision e8828d66e4a76e0590c3f06b7f6235f33df64e80) +++ Timers.c (.../Timers.c) (revision aa1221efc98233c54a97a2cbbf7fb1a5a35d385d) @@ -7,8 +7,8 @@ * * @file Timers.c * -* @author (last) Sean -* @date (last) 20-Feb-2020 +* @author (last) Sean Nash +* @date (last) 12-Aug-2020 * * @author (original) Sean * @date (original) 17-Feb-2020 @@ -74,8 +74,8 @@ * @details * 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) + * @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 *************************************************************************/ BOOL didTimeout( U32 startMSCount, U32 timeoutPeriod ) @@ -112,7 +112,7 @@ * @details * Inputs : msTimerCount * Outputs : none - * @param startMSCount : the ms count at the start of the period + * @param startMSCount the ms count at the start of the period * @return ms since given start time *************************************************************************/ U32 calcTimeSince( U32 startMSCount ) @@ -140,8 +140,8 @@ * @details * 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 + * @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 *************************************************************************/ U32 calcTimeBetween( U32 startMSCount, U32 endMSCount ) @@ -162,4 +162,3 @@ } /**@}*/ -