/************************************************************************** * * 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 ModePostTreat.h * * @author (last) Sean Nash * @date (last) 29-May-2020 * * @author (original) Dara Navaei * @date (original) 05-Nov-2019 * ***************************************************************************/ #ifndef __MODE_POST_TREATMENT_H__ #define __MODE_POST_TREATMENT_H__ #include "HDCommon.h" #include "HDDefs.h" /** * @defgroup HDPostTreatmentMode HDPostTreatmentMode * @brief Post-treatment Mode module. * * @addtogroup HDPostTreatmentMode * @{ */ // ********** private function prototypes ********** void initPostTreatmentMode( void ); // Initialize this module void transitionToPostTreatmentMode( void ); // Prepares for transition to post-treatment mode U32 execPostTreatmentMode( void ); // Execute the post-treatment mode state machine (call from OperationModes) void signalAlarmActionToPostTreatmentMode( ALARM_ACTION_T action ); // Execute alarm action as appropriate for post-treatment mode /**@}*/ #endif