Index: firmware/App/Modes/ModePostTreat.c =================================================================== diff -u -r5fcae5901d466789c329256f5532cf64be549c83 -r941c9f4f64c996e154e4d3cf88de9e758d646339 --- firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 5fcae5901d466789c329256f5532cf64be549c83) +++ firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 941c9f4f64c996e154e4d3cf88de9e758d646339) @@ -390,20 +390,17 @@ OPN_CLS_STATE_T frontDoor = getSwitchStatus( FRONT_DOOR ); OPN_CLS_STATE_T pumpTrack = getSwitchStatus( PUMP_TRACK_SWITCH ); - if ( ( STATE_CLOSED == frontDoor ) && ( STATE_CLOSED == pumpTrack ) ) - { #ifndef _RELEASE_ - if ( SW_CONFIG_ENABLE_VALUE == getSoftwareConfigStatus( SW_CONFIG_DISABLE_UI_INTERACTION ) ) - { - patientDisconnectionConfirmed = TRUE; - } + if ( SW_CONFIG_ENABLE_VALUE == getSoftwareConfigStatus( SW_CONFIG_DISABLE_UI_INTERACTION ) ) + { + patientDisconnectionConfirmed = TRUE; + } #endif - if ( TRUE == patientDisconnectionConfirmed ) - { - patientDisconnectionConfirmed = FALSE; - state = HD_POST_TREATMENT_DISPOSABLE_REMOVAL_STATE; - } + if ( TRUE == patientDisconnectionConfirmed ) + { + patientDisconnectionConfirmed = FALSE; + state = HD_POST_TREATMENT_DISPOSABLE_REMOVAL_STATE; } return state;