/**********************************************************************//** * * 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 ModeRecirculate.h * * @date 03-Apr-2020 * @author S. Nash * * @brief Header file for Recirculate Mode. * **************************************************************************/ #ifndef __MODE_RECIRCULATION_H__ #define __MODE_RECIRCULATION_H__ #include "DGCommon.h" /** * @defgroup RecirculateMode RecirculateMode * @brief Re-circulate mode module. * Manages re-circulate mode functions via a state machine. * * @addtogroup RecirculateMode * @{ */ // ********** public definitions ********** // ********** private function prototypes ********** void initRecirculateMode( void ); // initialize this module void transitionToRecirculateMode( void ); // prepares for transition to Recirculate mode void execRecirculateMode( void ); // execute the Recirculate mode state machine (call from OperationModes) /**@}*/ #endif