Index: firmware/App/Modes/ModeChemicalDisinfect.h =================================================================== diff -u -rc48a99d2d1c852adcc986253b6c420a90dab7bfe -rf5b02f03b6695c0c76fd8a4d902a13114e1a8aca --- firmware/App/Modes/ModeChemicalDisinfect.h (.../ModeChemicalDisinfect.h) (revision c48a99d2d1c852adcc986253b6c420a90dab7bfe) +++ firmware/App/Modes/ModeChemicalDisinfect.h (.../ModeChemicalDisinfect.h) (revision f5b02f03b6695c0c76fd8a4d902a13114e1a8aca) @@ -18,6 +18,7 @@ #define __MODE_CHEMICAL_DISINFECT_H__ #include "DGCommon.h" +#include "DGModes.h" /** * @defgroup ChemicalDisinfectMode ChemicalDisinfectMode @@ -28,12 +29,16 @@ * @{ */ +// ********** public definitions ********** + // ********** private function prototypes ********** void initChemicalDisinfectMode( void ); // initialize this module void transitionToChemicalDisinfectMode( void ); // prepares for transition to chemical disinfection mode -void execChemicalDisinfectMode( void ); // execute the chemical disinfection mode state machine (call from OperationModes) +U32 execChemicalDisinfectMode( void ); // execute the chemical disinfection mode state machine (call from OperationModes) +DG_CHEM_DISINFECT_STATE_T getCurrentChemicalDisinfectState( void ); // get the current state of the chemical disinfection mode. + /**@}*/ #endif