3.3.19.1 mcFlyI_FlyingStartInit
C
/* Initialize flying start module */ void mcFlyI_FlyingStartInit( tmcFly_Parameters_s * const pParameters )
Summary
Initialize the flying start module.
Description
This function initializes the flying start module by setting up the necessary parameters and linking state variables. It updates the state variable structure, configures the module parameters using the parameter module structure, and sets the initialization flag .
Precondition
None.
Parameters
Param | Description |
---|---|
pParameters | A pointer to the flying start module parameter structure. |
Returns
None
Example
// Define the flying start module data structure
tmcFly_Parameters_s pParameters;
/** Initialize parameters */
mcFlyI_FlyingStartInit(&pParameters);
Remarks
None.