Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r39799e6911039979ddec56a4eda7876aa4e0f165 -r46a9148605c584c65aa759d2044d91428fcdd175 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 39799e6911039979ddec56a4eda7876aa4e0f165) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 46a9148605c584c65aa759d2044d91428fcdd175) @@ -416,6 +416,7 @@ switch ( getCurrentOperationMode() ) { case DG_MODE_GENE: + case DG_MODE_CHFL: // The flow cannot be out of target by more than +/- 100 mL/min isFlowOutOfRange = ( ( fabs( currentFlowLPM - targetFlowLPM ) * ML_PER_LITER ) > MAX_ALLOWED_FLOW_DEVIATION_MLPM ); isFlowOutOfUpperRange = ( isFlowOutOfRange && ( currentFlowLPM > targetFlowLPM ) ? TRUE : FALSE ); @@ -433,7 +434,6 @@ case DG_MODE_FLUS: case DG_MODE_HEAT: case DG_MODE_CHEM: - case DG_MODE_CHFL: // The flow cannot be out of range for than 10% of the target flow isFlowOutOfRange = ( fabs( 1.0F - ( currentFlowLPM / targetFlowLPM ) ) > MAX_ALLOWED_FLOW_DEVIATION_PCT ? TRUE : FALSE ); isFlowOutOfUpperRange = ( isFlowOutOfRange && ( currentFlowLPM > targetFlowLPM ) ? TRUE : FALSE );