/************************************************************************** * * 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 ModeDrain.c * * @date 20-Dec-2019 * @author L. Baloa * * @brief Top-level state machine for the drain mode. * **************************************************************************/ #include "ModeDrain.h" #include "OperationModes.h" // ********** private data ********** // ********** private function prototypes ********** /************************************************************************* * @brief initDrainMode * The initOpParamsMode function initializes the Drain Mode module. * @details * Inputs : none * Outputs : Operating Parameters Mode module initialized. * @param none * @return none *************************************************************************/ void initDrainMode( void ) { } /************************************************************************* * @brief transitionToDrainMode * The transitionToDrainMode function prepares for transition to drain \n * mode. * @details * Inputs : none * Outputs : * @param none * @return none *************************************************************************/ void transitionToDrainMode( void ) { } /************************************************************************* * @brief execDrainMode * The execDrainMode function executes the Drain Mode state machine. * @details * Inputs : none * Outputs : * @param none * @return none *************************************************************************/ void execDrainMode( void ) { }