/************************************************************************** * * 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 ModeChemicalDisinfect.c * * @date 03-Apr-2020 * @author S. Nash * * @brief Top-level state machine for the chemical disinfect mode. * **************************************************************************/ #include "ModeChemicalDisinfect.h" #include "OperationModes.h" // ********** private data ********** // ********** private function prototypes ********** /************************************************************************* * @brief * The initChemicalDisinfectMode function initializes the chemical disinfect Mode module. * @details * Inputs : none * Outputs : Module initialized. * @param none * @return none *************************************************************************/ void initChemicalDisinfectMode( void ) { } /************************************************************************* * @brief * The transitionToChemicalDisinfectMode function prepares for transition to \n * chemical disinfect mode. * @details * Inputs : none * Outputs : none * @param none * @return none *************************************************************************/ void transitionToChemicalDisinfectMode( void ) { } /************************************************************************* * @brief * The execChemicalDisinfectMode function executes the chemical disinfect Mode state machine. * @details * Inputs : none * Outputs : none * @param none * @return none *************************************************************************/ void execChemicalDisinfectMode( void ) { }