⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dsp28_pid.h

📁 利用DSP实现PID控制功能
💻 H
字号:
//
//      TMDX ALPHA RELEASE
//      Intended for product evaluation purposes
//
//###########################################################################
//

//###########################################################################
//###########################################################################

#ifndef DSP28_PID_H
#define DSP28_PID_H

//---------------------------------------------------------------------------

struct _pid {

float pv;/*integer that contains the process value 过程值*/
float sp;/*integer that contains the set point 设定值*/
float integral;
float pgain;//比例值
float igain;//积分值
float dgain;//微分值
float deadband;
float last_error;

};
//struct _pid warm,*pid;
#endif  // end of DSP28_PID_H definition

//===========================================================================
// No more.
//===========================================================================

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -