3.3.19.4 mcFlyI_FlyingStartDisable

C

/* Disable flying start module */
void  mcFlyI_FlyingStartDisable( tmcFly_Parameters_s * const pParameters )	

Summary

Disables the flying start module.

Description

This function disables the flying start module by linking the state variables and resetting the module if necessary. It checks the module initialization state, resets the module if it is initialized, and then disable the control module using state variables and clear the enable flag.

Precondition

None.

Parameters

ParamDescription
pParametersA pointer to the flying start module parameter structure.

Returns

None

Example

// Define the flying start module data structure
tmcFly_Parameters_s pParameters;

/** Disable flying start module */
mcFlyI_FlyingStartDisable(&pParameters);
    

Remarks

None.