/**********************************************************************//** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file ModeHeatDisinfect.h * * @date 20-Dec-2019 * @author S. Nash * * @brief Header file for Heat Disinfect Mode. * **************************************************************************/ #ifndef __MODE_HEAT_DISINFECT_H__ #define __MODE_HEAT_DISINFECT_H__ #include "DGCommon.h" /** * @defgroup HeatDisinfectMode HeatDisinfectMode * @brief Heat disinfection mode module. Manages the state machine for the * heat disinfection mode. * * @addtogroup HeatDisinfectMode * @{ */ // ********** private function prototypes ********** void initHeatDisinfectMode( void ); // initialize this module void transitionToHeatDisinfectMode( void ); // prepares for transition to heat disinfect mode void execHeatDisinfectMode( void ); // execute the heat disinfect mode state machine (call from OperationModes) /**@}*/ #endif