3.3.19.2 mcFlyI_FlyingStartEnable
C
/* Enable flying start module */ void mcFlyI_FlyingStartEnable( tmcFly_Parameters_s * const pParameters )
Summary
Enables the flying start module.
Description
This function enables the flying start module by linking the state variables and initializing the module if necessary. It checks the module initialization state, initialize the module if not initialized, and then enable the control module using state variables and sets the enable 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;
/** Enable flying start module */
mcFlyI_FlyingStartEnable(&pParameters);
Remarks
None.