Index: firmware/App/Controllers/BoostPump.c =================================================================== diff -u -r1cf11f4c1f6a1f1fd40270889723fbec040fc7ec -rf4870116c87345ee0ea062df5b30187e1e113ddc --- firmware/App/Controllers/BoostPump.c (.../BoostPump.c) (revision 1cf11f4c1f6a1f1fd40270889723fbec040fc7ec) +++ firmware/App/Controllers/BoostPump.c (.../BoostPump.c) (revision f4870116c87345ee0ea062df5b30187e1e113ddc) @@ -680,7 +680,7 @@ /*********************************************************************//** * @brief - * The testBoostPumpTargetPressureOverride function overrides the Boost pump + * The testBoostPumpTargetPressureOverride function overrides the boost pump * data publish interval. * @details \b Inputs: targetBoostPumpPressure * @details \b Outputs: targetBoostPumpPressure @@ -699,7 +699,7 @@ /*********************************************************************//** * @brief - * The testBoostPumpTargetFlowOverride function overrides the Boost pump + * The testBoostPumpTargetFlowOverride function overrides the boost pump * target flow rate in ml/min. * @details \b Inputs: targetBoostPumpFlowRate * @details \b Outputs: targetBoostPumpFlowRate @@ -718,7 +718,7 @@ /*********************************************************************//** * @brief - * The testBoostPumpTargetDutyCycleOverride function overrides the RO pump + * The testBoostPumpTargetDutyCycleOverride function overrides the boost pump * duty cycle. * @details \b Inputs: boostPumpOpenLoopTargetDutyCycle * @details \b Outputs: boostPumpOpenLoopTargetDutyCycle @@ -735,4 +735,23 @@ return result; } +/*********************************************************************//** + * @brief + * The testBoostPumpHardStopOverride function stops the boost pump. + * @details \b Inputs: boostPumpOpenLoopTargetDutyCycle + * @details \b Outputs: boostPumpOpenLoopTargetDutyCycle + * @param message Override message from Dialin which includes the value + * of the target flow + * @return TRUE if override successful, FALSE if not + *************************************************************************/ +BOOL testBoostPumpHardStop( MESSAGE_T *message ) +{ + BOOL result = TRUE; + + signalBoostPumpHardStop(); + + return result; +} + + /**@}*/