Index: firmware/App/Modes/StateTxDialysis.c =================================================================== diff -u -rcd19fd5095128315982b9ef810bd45e68eff8deb -r79c2105d7ec35f3caeb977f6e2cc1b494853d211 --- firmware/App/Modes/StateTxDialysis.c (.../StateTxDialysis.c) (revision cd19fd5095128315982b9ef810bd45e68eff8deb) +++ firmware/App/Modes/StateTxDialysis.c (.../StateTxDialysis.c) (revision 79c2105d7ec35f3caeb977f6e2cc1b494853d211) @@ -233,6 +233,8 @@ * @brief * The signalPauseResumeUF function handles a request to pause or resume * ultrafiltration. + * @details \b Message \b Sent: MSG_ID_TD_UF_PAUSE_RESUME_RESPONSE + * @details \b Message \b Sent: UF_START_PAUSE_EVENT / UF_START_RESUME_EVENT * @details \b Inputs: currentDialysisState, setUFRateLHr * @details \b Outputs: ufPauseRequested, ufResumeRequested * @param message Message from UI which includes a flag indicating whether @@ -343,8 +345,10 @@ /*********************************************************************//** * @brief * The execDialysis function executes the Dialysis sub-mode state machine. - * @details Inputs: currentDialysisState - * @details Outputs: currentDialysisState + * @details \b Alarm: ALARM_ID_TD_SOFTWARE_FAULT if state is invalid + * @details \b Message \b Sent: TD_EVENT_SUB_STATE_CHANGE when state changes + * @details \b Inputs: currentDialysisState + * @details \b Outputs: currentDialysisState * @return none *************************************************************************/ void execDialysis( void ) @@ -381,8 +385,8 @@ * @brief * The handleDialysisUltrafiltrationState function handles the ultrafiltration * state of the Dialysis state machine. - * @details \b Inputs: none - * @details \b Outputs: none + * @details \b Inputs: ufPauseRequested + * @details \b Outputs: ufPauseRequested * @return next Dialysis state. *************************************************************************/ static DIALYSIS_STATE_T handleDialysisUltrafiltrationState( void ) @@ -403,8 +407,8 @@ * @brief * The handleDialysisUltrafiltrationPausedState function handles the * ultrafiltration paused state of the Dialysis state machine. - * @details \b Inputs: none - * @details \b Outputs: none + * @details \b Inputs: ufResumeRequested + * @details \b Outputs: ufResumeRequested * @return next Dialysis state. *************************************************************************/ static DIALYSIS_STATE_T handleDialysisUltrafiltrationPausedState( void )