#ifndef APP_MODES_MODEINITPOST_H_ #define APP_MODES_MODEINITPOST_H_ #include "ROCommon.h" #include "RODefs.h" /** * @defgroup ROInitAndPOSTMode ROInitAndPOSTMode * @brief Initialization and POST mode unit. Manages initialization and POST * mode functions via a state machine. * * @addtogroup ROInitAndPOSTMode * @{ */ // ********** 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