Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -re6f3a632890f96a5aa282922d11df148bdd06587 -rc914eb443ee2679eb9fe3668119058ccc578437d --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision e6f3a632890f96a5aa282922d11df148bdd06587) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision c914eb443ee2679eb9fe3668119058ccc578437d) @@ -243,14 +243,14 @@ /*********************************************************************//** * @brief - * The requestConcentratePumpsOn function requests the module to turn on + * The requestConcentratePumpOn function requests the module to turn on * the concentrate pumps. * @details Inputs: none * @details Outputs: set flag isPumpOnRequested to TRUE * @param pumpId concentrate pump id * @return none *************************************************************************/ -void requestConcentratePumpsOn( CONCENTRATE_PUMPS_T pumpId ) +void requestConcentratePumpOn( CONCENTRATE_PUMPS_T pumpId ) { if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) { @@ -264,14 +264,14 @@ /*********************************************************************//** * @brief - * The requestConcentratePumpsOff function requests the module to turn off + * The requestConcentratePumpOff function requests the module to turn off * the concentrate pumps. * @details Inputs: none * @details Outputs: set flag isPumpOffRequested to TRUE * @param pumpId concentrate pump id * @return none *************************************************************************/ -void requestConcentratePumpsOff( CONCENTRATE_PUMPS_T pumpId ) +void requestConcentratePumpOff( CONCENTRATE_PUMPS_T pumpId ) { if ( pumpId < NUM_OF_CONCENTRATE_PUMPS ) {