Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r550a5df210ac26217412e5e312d0a08864c5682e -rb386feef224569dbb155bfa84849e4d540f3803b --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 550a5df210ac26217412e5e312d0a08864c5682e) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision b386feef224569dbb155bfa84849e4d540f3803b) @@ -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;