3.3.21.2 mcSupI_OpenLoopStartupEnable
C
/* Enable open loop start-up module */ void mcSupI_OpenLoopStartupEnable( tmcSup_Parameters_s * const pParameters )
Summary
Enables the open loop start-up module.
Description
This function enables the open loop start-up 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 open loop start-up module parameter structure. |
Returns
None
Example
// Define the open loop start-up data structure
tmcSup_Parameters_s supParameters;
/** Enable open loop start-up module */
mcSupI_OpenLoopStartupEnable( &supParameters);
Remarks
None.