Index: firmware/App/Modes/ModeStandby.c =================================================================== diff -u -r5291bb3f717bb61085601eed512a1e1e57053e7f -r1c74566ff86f1df5e1929b8715d68715dc21a93b --- firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 5291bb3f717bb61085601eed512a1e1e57053e7f) +++ firmware/App/Modes/ModeStandby.c (.../ModeStandby.c) (revision 1c74566ff86f1df5e1929b8715d68715dc21a93b) @@ -51,7 +51,7 @@ static BOOL flushFilterRequest = FALSE; ///< Flag indicating HD has requested to flush filters static BOOL endSampleWaterRequest = FALSE; ///< Flag indicating HD has requested to end sample water -static BOOL pendingStartDGRequest = FALSE; ///< Flag indicating HD has requested DG start (go to re-circulate mode). +static BOOL pendingStartDGRequest = FALSE; ///< Flag indicating HD has requested DG start (go to generation idle mode). static U32 waterSampleStartTime = 0; ///< Time stamp for start of water sample state. static U32 filterFlushStartTime = 0; ///< Time stamp for start of filter flush state. static U32 filterFlushPublishTimerCounter = 0; ///< Filter flush data publish timer counter. @@ -176,7 +176,7 @@ else if ( TRUE == pendingStartDGRequest ) { pendingStartDGRequest = FALSE; - requestNewOperationMode( DG_MODE_CIRC ); + requestNewOperationMode( DG_MODE_GENE ); } return state; @@ -352,7 +352,7 @@ /*********************************************************************//** * @brief - * The requestDGStart function handles an HD request to start (go to re-circulate mode). + * The requestDGStart function handles an HD request to start (go to generation idle mode). * @details Inputs: standbyState * @details Outputs: pendingSampleWaterRequest * @return TRUE if request accepted, FALSE if not.