/************************************************************************** * * Copyright (c) 2024-2024 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 FPModeInitPOST.h * * @author (last) Michael Garthwaite * @date (last) 28-Feb-2025 * * @author (original) Michael Garthwaite * @date (original) 28-Feb-2025 * ***************************************************************************/ #ifndef __MODE_FP_INIT_POST_H__ #define __MODE_FP_INIT_POST_H__ #include "FPCommon.h" #include "FPDefs.h" /** * @defgroup FPInitAndPOSTMode FPInitAndPOSTMode * @brief Initialization and POST mode unit. Manages initialization and POST * mode functions via a state machine. * * @addtogroup FPInitAndPOSTMode * @{ */ // ********** public function prototypes ********** void initInitAndPOSTMode( void ); // Initialize this unit U32 transitionToInitAndPOSTMode( void ); // Prepares for transition to init. & POST mode U32 execInitAndPOSTMode( void ); // Execute the init. & POST mode state machine (call from OperationModes) BOOL isPOSTCompleted( void ); // Determine whether POST has completed yet BOOL isPOSTPassed( void ); // Determine whether POST has passed /**@}*/ #endif