Index: firmware/App/Modes/Dialysis.c =================================================================== diff -u -r1d07de4e970f54f2ae1786ef546cf5567df9ba8e -rf3a862d594f4cef30b08a5bf337189a42c8776d6 --- firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision 1d07de4e970f54f2ae1786ef546cf5567df9ba8e) +++ firmware/App/Modes/Dialysis.c (.../Dialysis.c) (revision f3a862d594f4cef30b08a5bf337189a42c8776d6) @@ -213,8 +213,10 @@ * The resetSalineBolus function initializes the saline bolus variables * at start of treatment or after stopping a bolus (e.g. alarm). Total * saline bolus volume delivered will not be affected by this function. - * @details Inputs: none - * @details Outputs: Dialysis sub-mode module initialized. + * @details Inputs: autoResumeUF + * @details Outputs: salineBolusStartRequested, salineBolusAbortRequested, + * bolusSalineVolumeDelivered_mL, currentSalineBolusState, autoResumeUF, + * currentUFState, currentDialysisState * @return none *************************************************************************/ void resetSalineBolus( void ) @@ -231,6 +233,7 @@ autoResumeUF = FALSE; currentUFState = UF_RUNNING_STATE; } + currentDialysisState = DIALYSIS_UF_STATE; } /*********************************************************************//**