Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -r688bd3abbe26cdde15368c8769511d8cf152a721 -r70654c8e042da0dd7ee7dc37c21bd8f4d54544e7 --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 688bd3abbe26cdde15368c8769511d8cf152a721) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 70654c8e042da0dd7ee7dc37c21bd8f4d54544e7) @@ -1020,19 +1020,18 @@ /*********************************************************************//** * @brief - * The cmdStartDGHeatDisinfect function sends a start heat disinfect - * command message to the DG. + * The cmdStartDGHeatDisinfectActiveCool function sends a start heat disinfect + * with active cool command message to the DG. * @details Inputs: none * @details Outputs: start heat disinfect mode command sent to DG. * @return none *************************************************************************/ -void cmdStartDGHeatDisinfect( void ) +void cmdStartDGHeatDisinfectActiveCool( void ) { BOOL start = TRUE; - dgCmdResp[ DG_CMD_START_HEAT_DISINFECT ].commandID = DG_CMD_NONE; - - sendDGStartHeatDisinfectModeCommand( start ); + dgCmdResp[ DG_CMD_START_HEAT_DISINFECT_ACTIVE_COOL ].commandID = DG_CMD_NONE; + sendDGStartHeatDisinfectActiveCoolModeCommand( start ); } /*********************************************************************//** @@ -1049,24 +1048,23 @@ dgCmdResp[ DG_CMD_STOP_HEAT_DISINFECT ].commandID = DG_CMD_NONE; - sendDGStartHeatDisinfectModeCommand( start ); + sendDGStartHeatDisinfectActiveCoolModeCommand( start ); } /*********************************************************************//** * @brief - * The cmdStartDGNocturnalHeatDisinfect function sends a start nocturnal - * heat disinfect command message to DG. + * The cmdStartDGHeatDisinfectPassiveCool function sends a start + * heat disinfect with passive cool command message to DG. * @details Inputs: none - * @details Outputs: start nocturnal heat disinfect mode command sent to DG. + * @details Outputs: start heat disinfect with passive cool mode command sent to DG. * @return none *************************************************************************/ -void cmdStartDGNocturnalHeatDisinfect( void ) +void cmdStartDGHeatDisinfectPassiveCool( void ) { BOOL start = TRUE; - dgCmdResp[ DG_CMD_START_NOCTURNAL_HEAT_DISINFECT ].commandID = DG_CMD_NONE; - - sendDGStartNocturnalHeatDisinfectModeCommand( start ); + dgCmdResp[ DG_CMD_START_HEAT_DISINFECT_PASSIVE_COOL ].commandID = DG_CMD_NONE; + sendDGStartHeatDisinfectPassiveCoolModeCommand( start ); } /*********************************************************************//**