/************************************************************************** * * Copyright (c) 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 TreatmentStop.h * * @date 15-Jan-2020 * @author S. Nash * * @brief Header file for Treatment Stop sub-mode. * **************************************************************************/ #ifndef __TREATMENT_STOP_H__ #define __TREATMENT_STOP_H__ // ********** private function prototypes ********** void initTreatmentStop( void ); // initialize this module void transitionToTreatmentStop( void ); // prepares for transition to treatment stop sub-mode void execTreatmentStop( void ); // execute the treatment stop sub-mode state machine (call from ModeTreatment) #endif