Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r8defcfa32034c4068b733930c2e8b0989c55daba -reff31263255b3a3441caff2955b4910f9ccc3656 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 8defcfa32034c4068b733930c2e8b0989c55daba) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision eff31263255b3a3441caff2955b4910f9ccc3656) @@ -367,12 +367,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;