/************************************************************************** * * 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 ModeFlush.h * * @date 20-Dec-2019 * @author L. Baloa * * @brief Header file for Flush Mode. * **************************************************************************/ #ifndef __MODE_FLUSH_H__ #define __MODE_FLUSH_H__ #include "DGCommon.h" // ********** private function prototypes ********** void initFlushMode( void ); // initialize this module void transitionToFlushMode( void ); // prepares for transition to pre-treatment mode void execFlushMode( void ); // execute the pre-treatment mode state machine (call from OperationModes) #endif