Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r250f7f30b65a740ae957606f144437aee050a4f1 -r239f565516c73aae797288effcfdf1fca0a361a0 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 250f7f30b65a740ae957606f144437aee050a4f1) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 239f565516c73aae797288effcfdf1fca0a361a0) @@ -366,12 +366,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;