Index: firmware/App/Services/WatchdogMgmt.c =================================================================== diff -u -rd91a24c730aeb5cd7e3eba9ef4eca78e442911f8 -r37a8a58b766a496b39241dd7ae46dc10dbda35e4 --- firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision d91a24c730aeb5cd7e3eba9ef4eca78e442911f8) +++ firmware/App/Services/WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 37a8a58b766a496b39241dd7ae46dc10dbda35e4) @@ -62,9 +62,8 @@ /*********************************************************************//** * @brief * The initWatchdogMgmt function initializes the watchdog mgmt. module. - * @details - * Inputs : none - * Outputs : Watchdog mgmt. module initialized. + * @details Inputs: none + * @details Outputs: Watchdog mgmt. module initialized. * @return none *************************************************************************/ void initWatchdogMgmt( void ) @@ -88,9 +87,8 @@ /*********************************************************************//** * @brief * The execWatchdogMgmt function executes thewatchdog mgmt. service. - * @details - * Inputs : watchdogTaskCheckedIn[] - * Outputs : watchdogTaskCheckedIn[] + * @details Inputs: watchdogTaskCheckedIn[] + * @details Outputs: watchdogTaskCheckedIn[] * @return none *************************************************************************/ void execWatchdogMgmt( void ) @@ -133,9 +131,8 @@ * @brief * The checkInWithWatchdogMgmt function checks a given task in with the * watchdog mgmt. service. - * @details - * Inputs : none - * Outputs : task is checked in with the watchdog mgmt.. + * @details Inputs: none + * @details Outputs: task is checked in with the watchdog mgmt.. * @param task the task that is checking in with the watchdog mgmt * @return none *************************************************************************/ @@ -152,9 +149,8 @@ * 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 : watchdogSelfTestState + * @details Inputs: watchdogSelfTestState + * @details Outputs: watchdogSelfTestState * @return in progress, passed, or failed *************************************************************************/ SELF_TEST_STATUS_T execWatchdogTest( void ) @@ -212,9 +208,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 ) @@ -232,9 +227,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 ) @@ -259,9 +253,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 *************************************************************************/ @@ -292,9 +285,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 ) @@ -318,9 +310,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 @@ -346,9 +337,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 *************************************************************************/