/**********************************************************************//** * * 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 ModeFill.h * * @date 19-Nov-2019 * @author L. Baloa * * @brief Header file for Fill Mode. * **************************************************************************/ #ifndef __MODE_FILL_H__ #define __MODE_FILl_H__ #include "DGCommon.h" /** * @defgroup FillMode FillMode * @brief Fill mode module. * Manages fill mode functions via a state machine. * * @addtogroup FillMode * @{ */ // ********** public definitions ********** // ********** private function prototypes ********** void initFillMode( void ); // initialize this module void transitionToFillMode( void ); // prepares for transition to fill mode void execFillMode( void ); // execute the fill mode state machine (call from OperationModes) /**@}*/ #endif