Index: firmware/App/Modes/ModePostTreat.c =================================================================== diff -u -r802a590448df6a6cdd949f9a433559d7be89c034 -r1d6c1c5544f09d5b38053cd4f91e8e64584dcdff --- firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 802a590448df6a6cdd949f9a433559d7be89c034) +++ firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 1d6c1c5544f09d5b38053cd4f91e8e64584dcdff) @@ -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;