/*********************************************************************** * * Copyright Diality, Inc. 2019-2020. All Rights Reserved. * 181 Technology, Ste. 150 * Irvine, CA 92618 * * Project Denali * * @file ModePostTreat.h * * @brief Header file for Post-Treatment Mode. * * @date 19-Sep-2019 * *************************************************************************/ #ifndef __MODE_POST_TREATMENT_H__ #define __MODE_POST_TREATMENT_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