Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -r239f565516c73aae797288effcfdf1fca0a361a0 -r49fc0dc4ab5cad74b657c8443e40a69c8371a876 --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 239f565516c73aae797288effcfdf1fca0a361a0) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision 49fc0dc4ab5cad74b657c8443e40a69c8371a876) @@ -545,7 +545,7 @@ *************************************************************************/ static void calcMeasuredPumpsSpeed( CONCENTRATE_PUMPS_T pumpId, U16 pulseWidthCount ) { - F32 pulseWidthInSecond = (F32)( pulseWidthCount * CONCENTRATE_PUMP_HALL_SENSE_PERIOD_RESOLUTION ) / US_PER_SECOND; + F32 pulseWidthInSecond = ( (F32)pulseWidthCount * CONCENTRATE_PUMP_HALL_SENSE_PERIOD_RESOLUTION ) / US_PER_SECOND; BOOL isPulseWidthOut = ( pulseWidthInSecond <= CONCENTRATE_PUMP_MIN_ALLOWED_HALL_SENSOR_COUNT ? TRUE : FALSE ); // TODO will implement in DEN-12224