Index: firmware/App/Controllers/PistonPumpControl.c =================================================================== diff -u -r5aa0b08cb09b06af807687fe03db5137e388da82 -r2ef70ec14fb47bee35cb241a927582f7ccd1bb22 --- firmware/App/Controllers/PistonPumpControl.c (.../PistonPumpControl.c) (revision 5aa0b08cb09b06af807687fe03db5137e388da82) +++ firmware/App/Controllers/PistonPumpControl.c (.../PistonPumpControl.c) (revision 2ef70ec14fb47bee35cb241a927582f7ccd1bb22) @@ -82,13 +82,13 @@ /*********************************************************************//** * @brief - * The initPistonPumpControl function initializes the piston pump control + * The initPistonPump function initializes the piston pump control * ( Dosing and ultrafilteraion control) unit. * @details \b Inputs: none * @details \b Outputs: unit variables initialized. * @return none *************************************************************************/ -void initPistonPumpControl( void ) +void initPistonPump( void ) { pistonPumpExecState[ PISTONPUMPS_ACID ] = PISTON_PUMP_OFF_STATE; pistonPumpExecState[ PISTONPUMPS_BICARB ] = PISTON_PUMP_OFF_STATE; @@ -116,13 +116,13 @@ /*********************************************************************//** * @brief - * The execPistonPumpControl function executes the piston pump control state machine. + * The execPistonPumpController function executes the piston pump control state machine. * @details \b Inputs: pistonPumpExecState * @details \b Outputs: pistonPumpExecState * @details \b Alarm: ALARM_ID_DD_SOFTWARE_FAULT when wrong piston pump control state invoked. * @return current state. *************************************************************************/ -void execPistonPumpControl( void ) +void execPistonPumpController( void ) { PISTON_PUMPS_T pumpId;