/************************************************************************** * * 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 ModeDisinfect.c * * @date 20-Dec-2019 * @author L. Baloa * * @brief Top-level state machine for the disinfect mode. * **************************************************************************/ #include "ModeDisinfect.h" #include "OperationModes.h" // ********** private data ********** // ********** private function prototypes ********** /************************************************************************* * @brief initDisinfectMode * The initDisinfectMode function initializes the disinfect Mode module. * @details * Inputs : none * Outputs : none * @param none * @return none *************************************************************************/ void initDisinfectMode( void ) { } /************************************************************************* * @brief transitionToDisinfectMode * The transitionToDisinfectMode function prepares for transition to disinfect mode. * @details * Inputs : none * Outputs : none * @param none * @return none *************************************************************************/ void transitionToDisinfectMode( void ) { } /************************************************************************* * @brief execDisinfectMode * The execDisinfectMode function executes the disinfect Mode state machine. * @details * Inputs : none * Outputs : none * @param none * @return none *************************************************************************/ void execDisinfectMode( void ) { }