Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -rc1ef106ed0f97dc998230c6e154aa2362aa476d8 -r4d7d40a27130dc813d653f044cbb856b1b7d8481 --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision c1ef106ed0f97dc998230c6e154aa2362aa476d8) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 4d7d40a27130dc813d653f044cbb856b1b7d8481) @@ -61,9 +61,8 @@ /*********************************************************************//** * @brief * The initWatchdogMgmt function initializes the WatchdogMgmt module. - * @details - * Inputs : none - * Outputs : WatchdogMgmt module initialized. + * @details Inputs: none + * @details Outputs: WatchdogMgmt module initialized. * @return none *************************************************************************/ void initWatchdogMgmt( void ) @@ -87,9 +86,8 @@ /*********************************************************************//** * @brief * The execWatchdogMgmt function executes the watchdog management service. - * @details - * Inputs : watchdogTaskCheckedIn[] - * Outputs : Pets watchdog when all tasks checked in + * @details Inputs: watchdogTaskCheckedIn[] + * @details Outputs: Pets watchdog when all tasks checked in * @return none *************************************************************************/ void execWatchdogMgmt( void ) @@ -126,9 +124,8 @@ * @brief * The checkInWithWatchdogMgmt function checks a given task in with the * watchdog management service. - * @details - * Inputs : none - * Outputs : task is checked in with the watchdog management + * @details Inputs: none + * @details Outputs: task is checked in with the watchdog management * @param task the task that is checking in with the watchdog management * @return none *************************************************************************/ @@ -144,9 +141,8 @@ * @brief * The execWatchdogTest function executes the watchdog test. This function * should be called periodically until a pass or fail result is returned. - * @details - * Inputs : watchdogSelfTestState - * Outputs : Executed watchdog self-test + * @details Inputs: watchdogSelfTestState + * @details Outputs: Executed watchdog self-test * @return in progress, passed, or failed *************************************************************************/ SELF_TEST_STATUS_T execWatchdogTest( void ) @@ -204,9 +200,8 @@ /*********************************************************************//** * @brief * The resetWDTaskCheckIns function resets the task check-ins with the watchdog. - * @details - * Inputs : none - * Outputs : watchdogTaskCheckedIn[] array reset to all false. + * @details Inputs: none + * @details Outputs: watchdogTaskCheckedIn[] array reset to all false. * @return none *************************************************************************/ static void resetWDTaskCheckIns( void ) @@ -224,9 +219,8 @@ * @brief * The haveAllTasksCheckedIn function determines whether all tasks have * checked in with watchdog mgmt. - * @details - * Inputs : watchdogTaskCheckedIn[] - * Outputs : none + * @details Inputs: watchdogTaskCheckedIn[] + * @details Outputs: none * @return TRUE if all tasks have checked in since last watchdog pet, FALSE if not. *************************************************************************/ static BOOL haveAllTasksCheckedIn( void ) @@ -250,9 +244,8 @@ /*********************************************************************//** * @brief * The hasTaskGeneralCheckedIn function gets the check-in state of a given task. - * @details - * Inputs : watchdogTaskCheckedIn[] - * Outputs : none + * @details Inputs: watchdogTaskCheckedIn[] + * @details Outputs: none * @param task ID of task to check * @return TRUE if given task has checked in, FALSE if not *************************************************************************/ @@ -282,9 +275,8 @@ /*********************************************************************//** * @brief * The petWatchdog function pets the watchdog by pulsing the CPLD WD pet signal. - * @details - * Inputs : none - * Outputs : CPLD WD pet signal is pulsed + * @details Inputs: none + * @details Outputs: CPLD WD pet signal is pulsed * @return none *************************************************************************/ static void petWatchdog( void ) @@ -306,9 +298,8 @@ * @brief * The testSetWatchdogTaskCheckInOverride function overrides the state of the * task check-in with the watchdog management with a given check-in state. - * @details - * Inputs : none - * Outputs : watchdogTaskCheckedIn[] + * @details Inputs: none + * @details Outputs: watchdogTaskCheckedIn[] * @param task ID of task to override check-in state for * @param value override state for the given task ID * @return TRUE if override successful, FALSE if not @@ -334,9 +325,8 @@ * @brief * The testResetWatchdogTaskCheckInOverride function resets the override of the * state of the check-in with the watchdog management. - * @details - * Inputs : none - * Outputs : watchdogTaskCheckedIn[] + * @details Inputs: none + * @details Outputs: watchdogTaskCheckedIn[] * @param task ID of task to override check-in state for * @return TRUE if override reset successful, FALSE if not *************************************************************************/