/************************************************************************** * * 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 * * @date 19-Sep-2019 * @author S. Nash * * @brief Header file for Post-Treatment Mode. * **************************************************************************/ #ifndef __MODE_POST_TREATMENT_H__ #define __MODE_POST_TREATMENT_H__ #include "DGCommon.h" // ********** private function prototypes ********** void initPostTreatmentMode( void ); // initialize this module void transitionToPostTreatmentMode( void ); // prepares for transition to post-treatment mode void execPostTreatmentMode( void ); // execute the post-treatment mode state machine (call from OperationModes) #endif