Index: firmware/App/Modes/TreatmentEnd.c =================================================================== diff -u -r3d5a2ff09f3f4983699bfc61c7b63df1732970e0 -r8000e5d68a7a0ed6d1b43d8e6778a246ff0d8e72 --- firmware/App/Modes/TreatmentEnd.c (.../TreatmentEnd.c) (revision 3d5a2ff09f3f4983699bfc61c7b63df1732970e0) +++ firmware/App/Modes/TreatmentEnd.c (.../TreatmentEnd.c) (revision 8000e5d68a7a0ed6d1b43d8e6778a246ff0d8e72) @@ -22,6 +22,7 @@ #include "DialOutFlow.h" #include "ModeTreatment.h" #include "OperationModes.h" +#include "SystemCommMessages.h" #include "TaskGeneral.h" #include "TreatmentStop.h" #include "Valves.h" @@ -321,7 +322,7 @@ * @param action User action requested * @return none *************************************************************************/ -void signalTreatmentEndUserAction( REQUESTED_TREATMENT_RECIRC_USER_ACTIONS_T action ) +void signalTreatmentEndUserAction( REQUESTED_TREATMENT_END_USER_ACTIONS_T action ) { BOOL accepted = FALSE; REQUEST_REJECT_REASON_CODE_T rejReason = REQUEST_REJECT_REASON_NONE; @@ -346,7 +347,7 @@ } // Respond to user action request - sendRinsebackCmdResponse( accepted, (U32)rejReason ); + sendTreatmentEndCmdResponse( accepted, (U32)rejReason ); } /*********************************************************************//**