/************************************************************************** * * 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.c * * @author (last) Michael Garthwaite * @date (last) 28-Feb-2025 * * @author (original) Michael Garthwaite * @date (original) 28-Feb-2025 * ***************************************************************************/ #include "FPModeInitPOST.h" #include "FPOperationModes.h" /** * @addtogroup FPInitAndPOSTMode * @{ */ // ********** private definitions ********** /*********************************************************************//** * @brief * The initInitAndPOSTMode function initializes the Init and POST mode unit. * @details \b Inputs: none * @details \b Outputs:unit variables initialized. * @return none *************************************************************************/ void initInitAndPOSTMode( void ) { } /*********************************************************************//** * @brief * The transitionToInitAndPOSTMode function prepares for transition to init and POST mode. * while transition, deenergize all actuators. * @details \b Inputs: none * @details \b Outputs: Re-initialized Init and POST mode * @return initial state *************************************************************************/ U32 transitionToInitAndPOSTMode( void ) { return 0; } /*********************************************************************//** * @brief * The execInitAndPOSTMode function executes the standby mode state machine. * @details \b Inputs: none * @details \b Outputs: Init and POST mode state machine executed * @return current state *************************************************************************/ U32 execInitAndPOSTMode( void ) { requestNewOperationMode( FP_MODE_STAN ); return 0; }