Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r6dd2ddabffdb71cacf6b59654ee876769dc16993 -rd5b2e26598becc953ce0a7c8928c0c814fcc53a9 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 6dd2ddabffdb71cacf6b59654ee876769dc16993) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision d5b2e26598becc953ce0a7c8928c0c814fcc53a9) @@ -502,7 +502,7 @@ // to target pressure straight. At the beginning the maximum pressure is set in the targetROPumpPressure override variable. // If the flow rate was reached without reaching to maximum pressure, the pressure that was set to targetROPumpPressure override will // be reset to the corresponding pressure of the target flow rate. - if ( actualPressure > targetPressure || ( targetPressure - actualPressure ) < MAX_PRESSURE_TARGET_TOLERANCE ) + if ( ( actualPressure > targetPressure ) || ( ( targetPressure - actualPressure ) < MAX_PRESSURE_TARGET_TOLERANCE ) ) { result = RO_PUMP_CONTROL_TO_TARGET_STATE; }