/************************************************************************** * * 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 ModeInitPOST.h * * @date 19-Sep-2019 * @author S. Nash * * @brief Header file for Initialization and POST Mode. * **************************************************************************/ #ifndef __MODE_INIT_POST_H__ #define __MODE_INIT_POST_H__ #include "DGCommon.h" // ********** private function prototypes ********** void initInitAndPOSTMode( void ); // initialize this module void transitionToInitAndPOSTMode( void ); // prepares for transition to init. & POST mode void execInitAndPOSTMode( void ); // execute the init. & POST mode state machine (call from OperationModes) BOOL isPOSTCompleted( void ); BOOL isPOSTPassed( void ); #endif