/************************************************************************** * * Copyright (c) 2025-2025 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) 11-Sep-2025 * * @author (original) Michael Garthwaite * @date (original) 08-Sep-2025 * ***************************************************************************/ #ifndef __MODE_FP_INIT_POST_H__ #define __MODE_FP_INIT_POST_H__ #include "DDDefs.h" #include "DDCommon.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 initFPInitAndPOSTMode( void ); // Initialize this unit U32 transitionToFPInitAndPOSTMode( void ); // Prepares for transition to init. & POST mode U32 execFPInitAndPOSTMode( void ); // Execute the init. & POST mode state machine (call from OperationModes) BOOL isFPPOSTCompleted( void ); // Determine whether POST has completed yet BOOL isFPPOSTPassed( void ); // Determine whether POST has passed /**@}*/ #endif