/************************************************************************** * * 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 * * @author (last) Sean Nash * @date (last) 29-May-2020 * * @author (original) Sean * @date (original) 20-Apr-2020 * ***************************************************************************/ #ifndef __MODE_HEAT_DISINFECT_H__ #define __MODE_HEAT_DISINFECT_H__ #include "DGCommon.h" #include "DGDefs.h" /** * @defgroup DGHeatDisinfectMode DGHeatDisinfectMode * @brief Heat disinfection mode module. Manages the state machine for the heat disinfection mode. * * @addtogroup DGHeatDisinfectMode * @{ */ // ********** public definitions ********** // ********** public function prototypes ********** void initHeatDisinfectMode( void ); // initialize this module void transitionToHeatDisinfectMode( void ); // prepares for transition to heat disinfect mode U32 execHeatDisinfectMode( void ); // execute the heat disinfect mode state machine (call from OperationModes) DG_HEAT_DISINFECT_STATE_T getCurrentHeatDisinfectState( void ); // get the current state of the heat disinfect mode. /**@}*/ #endif