Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r7e4025c730935b8e857fc999f70ef957e8ecec41 -r8241712a481ed9083f8004598647947f21ac7efb --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 7e4025c730935b8e857fc999f70ef957e8ecec41) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 8241712a481ed9083f8004598647947f21ac7efb) @@ -1260,14 +1260,14 @@ /*********************************************************************//** * @brief - * The handleStartStopDGHeatDisinfect function handles a request start or - * stop DG heat disifect mode. + * The handleStartStopDGActiveCoolHeatDisinfect function handles a request start or + * stop DG active cool heat disifect mode. * @details Inputs: none * @details Outputs: message handled * @param message: a pointer to the message to handle * @return result *************************************************************************/ -BOOL handleStartStopDGHeatDisinfect( MESSAGE_T *message ) +BOOL handleStartStopDGActiveCoolHeatDisinfect( MESSAGE_T *message ) { BOOL status = FALSE; @@ -1279,7 +1279,7 @@ if ( TRUE == startingDGHeatDisinfect ) { - setNocturnalHeatDisinfectStatus( FALSE ); + setActiveOrPassiveHeatDisinfectStatus( FALSE ); status = startDGHeatDisinfect(); } else @@ -1966,14 +1966,14 @@ /*********************************************************************//** * @brief - * The handleStartStopDGNocturnalHeatDisifnect function handles a request to - * start or stop DG nocturnal heat disinfect. + * The handleStartStopDGPassiveHeatDisifnect function handles a request to + * start or stop DG passive cool heat disinfect. * @details Inputs: none * @details Outputs: message handled * @param message: a pointer to the message to handle * @return result *************************************************************************/ -void handleStartStopDGNocturnalHeatDisifnect( MESSAGE_T* message ) +void handleStartStopDGPassiveCoolHeatDisifnect( MESSAGE_T* message ) { BOOL status = FALSE; @@ -1985,7 +1985,7 @@ if ( TRUE == startingDGNocturnalHeatDisinfect ) { - setNocturnalHeatDisinfectStatus( TRUE ); + setActiveOrPassiveHeatDisinfectStatus( TRUE ); status = startDGHeatDisinfect(); } else