Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -r54f45c387430e440ab4607451fc84dea61f273f1 -r4d7d40a27130dc813d653f044cbb856b1b7d8481 --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 54f45c387430e440ab4607451fc84dea61f273f1) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 4d7d40a27130dc813d653f044cbb856b1b7d8481) @@ -49,9 +49,8 @@ /*********************************************************************//** * @brief * The initStandbyMode function initializes the standby mode module. - * @details - * Inputs : none - * Outputs : Standby mode module initialized + * @details Inputs: none + * @details Outputs: Standby mode module initialized * @return none *************************************************************************/ void initStandbyMode( void ) @@ -65,9 +64,8 @@ /*********************************************************************//** * @brief * The transitionToStandbyMode function prepares for transition to standby mode. - * @details - * Inputs : none - * Outputs : Re-initialized standby mode + * @details Inputs: none + * @details Outputs: Re-initialized standby mode * @return none *************************************************************************/ void transitionToStandbyMode( void ) @@ -92,9 +90,8 @@ /*********************************************************************//** * @brief * The execStandbyMode function executes the standby mode state machine. - * @details - * Inputs : none - * Outputs : Standby mode state machine executed + * @details Inputs: none + * @details Outputs: Standby mode state machine executed * @return current state *************************************************************************/ U32 execStandbyMode( void ) @@ -127,9 +124,8 @@ * @brief * The handleStandbyIdleState function executes the idle state of the * standby mode state machine. - * @details - * Inputs : pendingSampleWaterRequest, pendingStartDGRequest - * Outputs : Idle state of the standby mode executed + * @details Inputs: pendingSampleWaterRequest, pendingStartDGRequest + * @details Outputs: Idle state of the standby mode executed * @return the next state *************************************************************************/ static DG_STANDBY_MODE_STATE_T handleStandbyIdleState( void ) @@ -163,9 +159,8 @@ * @brief * The handleStandbySampleWaterState function executes the sample water state * of the standby mode state machine. - * @details - * Inputs : none - * Outputs : Sample water state of the standby mode executed + * @details Inputs: none + * @details Outputs: Sample water state of the standby mode executed * @return the next state *************************************************************************/ static DG_STANDBY_MODE_STATE_T handleStandbySampleWaterState( void ) @@ -186,9 +181,8 @@ /*********************************************************************//** * @brief * The requestWaterSample function handles an HD request to sample water. - * @details - * Inputs : standbyState - * Outputs : pendingSampleWaterRequest + * @details Inputs: standbyState + * @details Outputs: pendingSampleWaterRequest * @return TRUE if request accepted, FALSE if not. *************************************************************************/ BOOL requestWaterSample( void ) @@ -207,9 +201,8 @@ /*********************************************************************//** * @brief * The requestDGStart function handles an HD request to start (go to re-circulate mode). - * @details - * Inputs : standbyState - * Outputs : pendingSampleWaterRequest + * @details Inputs: standbyState + * @details Outputs: pendingSampleWaterRequest * @return TRUE if request accepted, FALSE if not. *************************************************************************/ BOOL requestDGStart( void ) @@ -228,9 +221,8 @@ /*********************************************************************//** * @brief * The getCurrentStandbyState function returns the current state of standby mode. - * @details - * Inputs : standbyState - * Outputs : none + * @details Inputs: standbyState + * @details Outputs: none * @return the current state of standby mode. *************************************************************************/ DG_STANDBY_MODE_STATE_T getCurrentStandbyState( void )