1 Star 0 Fork 0

Canrad/mspm0g3507_template_project

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pid_old.h 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
/**
* @file pid_old.h 以前用的PID算法
* @author Aoming Yu(2016th)
* @brief 之前用的PID算法,新的用不惯可以使用老的
*/
#ifndef __PID_OLD_H
#define __PID_OLD_H
#ifdef __cplusplus
extern "C"
{
#endif /*__cplusplus*/
#include <stdint.h>
enum PID_MODE
{
PID_POSITION = 0,
PID_DELTA
};
typedef struct
{
uint8_t mode;
//PID 三参数
float Kp;
float Ki;
float Kd;
float max_out; //最大输出
float max_iout; //最大积分输出
float set;
float fdb;
float out;
float Pout;
float Iout;
float Dout;
float Dbuf[3]; //微分项 0最新 1上一次 2上上次
float error[3]; //误差项 0最新 1上一次 2上上次
} PidTypeDef;
extern void PID_Init(PidTypeDef *pid, uint8_t mode, float p, float i, float d, float max_out, float max_iout);
// ref:目标值
// set:当前值
extern float PID_Calc(PidTypeDef *pid, float ref, float set);
extern void PID_clear(PidTypeDef *pid);
float Limit_Max(float input, float max);
float Limit_Min_Max(float input, float min,float max);
#ifdef __cplusplus
}
#endif /*__cplusplus*/
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/Canrad/mspm0g3507_template_project.git
git@gitee.com:Canrad/mspm0g3507_template_project.git
Canrad
mspm0g3507_template_project
mspm0g3507_template_project
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385