/************************************************************************** * * 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 ModePreTreat.h * * @author (last) Sean Nash * @date (last) 29-May-2020 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 * ***************************************************************************/ #ifndef __MODE_PRE_TREAT_H__ #define __MODE_PRE_TREAT_H__ #include "HDCommon.h" #include "HDDefs.h" /** * @defgroup HDPreTreatmentMode HDPreTreatmentMode * @brief Pre-TreatmentMode module. * * @addtogroup HDPreTreatmentMode * @{ */ // ********** private function prototypes ********** void initPreTreatmentMode( void ); // initialize this module void transitionToPreTreatmentMode( void ); // prepares for transition to pre-treatment mode U32 execPreTreatmentMode( void ); // execute the pre-treatment mode state machine (call from OperationModes) /**@}*/ #endif