Index: firmware/App/Modes/TreatmentRecirc.c =================================================================== diff -u -r0b8a93215a073650631911d190767b7642f09a43 -r1b27784f400d03678a1441cd70ab1c4111bbfa04 --- firmware/App/Modes/TreatmentRecirc.c (.../TreatmentRecirc.c) (revision 0b8a93215a073650631911d190767b7642f09a43) +++ firmware/App/Modes/TreatmentRecirc.c (.../TreatmentRecirc.c) (revision 1b27784f400d03678a1441cd70ab1c4111bbfa04) @@ -222,12 +222,12 @@ else if ( TRUE == recircEndTreatmentRequested ) { setupForRecirculationStopState(); - signalRinsebackToEnd(); // signal end Tx sub-mode + signalRinsebackToTreatmentEnd(); // signal end Tx sub-mode } // Has max time in re-circ sub-mode been exceeded? else if ( recircTimerCtr > RECIRC_TIMEOUT_MS ) { - signalRinsebackToStopped(); + signalRinsebackToTreatmentStopped(); activateAlarmNoData( ALARM_ID_TREATMENT_RECIRC_TIMEOUT_ALARM ); } @@ -249,12 +249,12 @@ // Is back to treatment requested? if ( TRUE == recircBackToTreatmenRequested ) { - signalRinsebackToStopped(); + signalRinsebackToTreatmentStopped(); } // Is end treatment requested? else if ( TRUE == recircEndTreatmentRequested ) { - signalRinsebackToEnd(); + signalRinsebackToTreatmentEnd(); } // Is re-circ resume requested? else if ( TRUE == recircResumeRequested ) @@ -265,7 +265,7 @@ // Has max time in re-circ sub-mode been exceeded? else if ( recircTimerCtr > RECIRC_TIMEOUT_MS ) { - signalRinsebackToStopped(); + signalRinsebackToTreatmentStopped(); activateAlarmNoData( ALARM_ID_TREATMENT_RECIRC_TIMEOUT_ALARM ); }