/************************************************************************** * * 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.c * * @author (last) Michael Garthwaite * @date (last) 08-Sep-2025 * * @author (original) Michael Garthwaite * @date (original) 08-Sep-2025 * ***************************************************************************/ #include "FPModeInitPOST.h" #include "FPOperationModes.h" /** * @addtogroup FPInitAndPOSTMode * @{ */ // ********** private definitions ********** /*********************************************************************//** * @brief * The initFPInitAndPOSTMode function initializes the Init and POST mode unit. * @details \b Inputs: none * @details \b Outputs:unit variables initialized. * @return none *************************************************************************/ void initFPInitAndPOSTMode( void ) { } /*********************************************************************//** * @brief * The transitionToFPInitAndPOSTMode 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 transitionToFPInitAndPOSTMode( void ) { return 0; } /*********************************************************************//** * @brief * The execFPInitAndPOSTMode 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 execFPInitAndPOSTMode( void ) { requestNewFPOperationMode( FP_MODE_STAN ); return 0; }