dsp28_pid.h
来自「利用DSP实现PID控制功能」· C头文件 代码 · 共 34 行
H
34 行
//
// 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 + =
减小字号Ctrl + -
显示快捷键?