Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r4b208641ed0c22d13211e6343ffaec9778560cc5 -r49fc0dc4ab5cad74b657c8443e40a69c8371a876 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 4b208641ed0c22d13211e6343ffaec9778560cc5) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 49fc0dc4ab5cad74b657c8443e40a69c8371a876) @@ -369,12 +369,11 @@ measuredROFlowRateLPM.data = flow - ( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP1_ACID ) / ML_PER_LITER ) - ( getMeasuredPumpSpeed( CONCENTRATEPUMPS_CP2_BICARB ) / ML_PER_LITER ); - // If the flow is less than a certain value, FPGA will return 0xFFFF meaning that - // the flow is 0. - if ( FLOW_SENSOR_ZERO_READING == roFlowReading ) - { - measuredROFlowRateLPM.data = 0.0; - } + // If the flow is less than a certain value, FPGA will return 0xFFFF meaning that the flow is 0. + if ( FLOW_SENSOR_ZERO_READING == roFlowReading ) + { + measuredROFlowRateLPM.data = 0.0; + } measuredFlowReadingsSum = 0; flowFilterCounter = 0;