Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -rd748813399d38ef5b71d760e327e368cc82d7a38 -rf7f7527c0ea9c5653290ce4f5785cff90accb025 --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision d748813399d38ef5b71d760e327e368cc82d7a38) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision f7f7527c0ea9c5653290ce4f5785cff90accb025) @@ -734,13 +734,13 @@ * @param pumpId concentrate pump id to get target revolution count * @return the target revolution count for the given concentrate pump *************************************************************************/ -U16 getConcPumpTargetRevolutionCount( CONCENTRATE_PUMPS_T pumpId ) +U32 getConcPumpTargetRevolutionCount( CONCENTRATE_PUMPS_T pumpId ) { - U16 result = 0; + U32 result = 0; if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) { - result = (U16)getU32OverrideValue( &pumpTargetRevCnt[ pumpId ] ); + result = (U32)getU32OverrideValue( &pumpTargetRevCnt[ pumpId ] ); } else { @@ -760,13 +760,13 @@ * @param pumpId concentrate pump id to get current measured revolution count * @return the current revolution count for the given concentrate pump *************************************************************************/ -U16 getConcPumpCurrentMeasuredRevolutionCount( CONCENTRATE_PUMPS_T pumpId ) +U32 getConcPumpCurrentMeasuredRevolutionCount( CONCENTRATE_PUMPS_T pumpId ) { - BOOL result = FALSE; + U32 result = 0; if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) { - result = (U16)getU32OverrideValue( &pumpMesauredRevCnt[ pumpId ] ); + result = (U32)getU32OverrideValue( &pumpMesauredRevCnt[ pumpId ] ); } else {