TI中文支持网
TI专业的中文技术问题搜集分享网站

static inline void TRAJ_run(TRAJ_Handle handle) ,在哪里调用了?

static inline void TRAJ_run(TRAJ_Handle handle)
{
_iq targetValue = TRAJ_getTargetValue(handle);
_iq intValue = TRAJ_getIntValue(handle);
_iq error = targetValue – intValue;
_iq maxDelta = TRAJ_getMaxDelta(handle);
_iq minValue = TRAJ_getMinValue(handle);
_iq maxValue = TRAJ_getMaxValue(handle);

// increment the value
intValue += _IQsat(error,maxDelta,-maxDelta);

// bound the value
intValue = _IQsat(intValue,maxValue,minValue);

// store the value
TRAJ_setIntValue(handle,intValue);

return;
} // end of TRAJ_run() function

速度模式 这个函数应该用了,怎么找不到在哪里调用?

赞(0)
未经允许不得转载:TI中文支持网 » static inline void TRAJ_run(TRAJ_Handle handle) ,在哪里调用了?
分享到: 更多 (0)