3.3.21.4 mcSupI_OpenLoopStartupDisable

C


/* Disable open loop start-up module */
void  mcSupI_OpenLoopStartupDisable( tmcSup_Parameters_s * const pParameters )	

Summary

Disables the open loop start-up module.

Description

This function disables the open loop start-up 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 open loop start-up module parameter structure.

Returns

None

Example

// Define the open loop start-up module data structure 
tmcSup_Parameters_s supParameters;

/** Disable open loop start-up module */
mcSupI_OpenLoopStartupDisable( &supParameters);
    

Remarks

None.