找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 2741|回复: 1
打印 上一主题 下一主题
收起左侧

求解这个单片机程序的PWM周期和采样周期

[复制链接]
跳转到指定楼层
楼主
ID:628908 发表于 2019-10-31 17:13 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
1黑币
#include <reg51.h>
#include <intrins.h>
sbit plus_10=P1^3;       //对各个按钮进行位定义
sbit minus_10=P1^4;
sbit plus=P1^5;
sbit minus=P1^6;
sbit enter=P1^7;
sbit PWM_OUT1=P1^1;
sbit PWM_OUT2=P1^0;
sbit dir=P1^2;
struct PID             //定义PID结构体
{
int SetValue;      //设定值
// long SumError;     //误差
double Proportion;    //比例系数
double Integral;    //积分系数
double Derivative;    //微分系数
int LastError;
int PrevError;
}sPID,*sptr= &sPID;
int PWM,PWM_temp=1,count0=0,Speed_Set,Seep_Measure,counter_100ms,counter_10ms;
bit flag_100ms,flag_10ms,start,plus_10_lock=1,minus_10_lock=1,plus_lock=1,
    minus_lock=1,enter_lock=1;
char num[] = {0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f};//0~9 对应数码
/*****************************************************************************************
*函数名:void delayms(unsigned char x)
*函数功能:简单延时 支持0~255ms
*函数参数:x 延时时间
*****************************************************************************************/
void delayms(unsigned char x)
{
unsigned char i ;
while(x--)
for(i = 0 ; i < 120 ; i++) ;
}
/*****************************************************************************************
*函数名:void display(void)
*函数功能:显示函数
*函数参数:无
*****************************************************************************************/
void display(void)
{
P2 =0x7f; P0 = num[Speed_Set/100];delayms(2);   
P2 =0xbf; P0 = num[Speed_Set % 100 / 10];delayms(2);   
P2 =0xdf; P0 = num[Speed_Set % 10];delayms(2);
P2 =0xfb; P0 = num[Seep_Measure / 100];delayms(2);  
P2 =0xfd; P0 = num[Seep_Measure % 100/10];delayms(2);
P2 =0xfe; P0 = num[Seep_Measure % 10]; delayms(2);
if(start&&dir)
{
  P2=0xf7;P0=0x40;delayms(2);
}
}
/*****************************************************************************************
*函数名:void keyscan(void)
*函数功能:按键扫描
*函数参数:无
*****************************************************************************************/
void keyscan(void)
{
static unsigned char plus_10_delay,minus_10_delay,plus_delay,minus_delay,enter_delay;
if(plus_10==0)
{
  if(plus_10_lock&&++plus_10_delay>=2)
  {
   plus_10_lock=0;
   if(Speed_Set<170)
   Speed_Set+=10;
   else Speed_Set=10;
  }
}
else
{
  plus_10_lock=1;
  plus_10_delay=0;
}            
if(minus_10==0)
{
  if(minus_10_lock&&++minus_10_delay>=2)
  {
   minus_10_lock=0;
   if(Speed_Set>10)
   Speed_Set-=10;
   else Speed_Set=170;
  }
}
else
{
  minus_10_lock=1;
  minus_10_delay=0;
}
if(plus==0)
{
  if(plus_lock&&++plus_delay>2)
  {
   plus_lock=0;
   if(Speed_Set<170)
   Speed_Set+=1;
   else Speed_Set=0;
  }
}
else
{
  plus_lock=1;
  plus_delay=0;
}
if(minus==0)
{
  if(minus_lock&&++minus_delay>2)
  {
   minus_lock=0;
   if(Speed_Set>0)
   Speed_Set-=1;
   else Speed_Set=170;
  }
}
else
{
  minus_lock=1;
  minus_delay=0;
}
if(enter==0)
{
  if(enter_lock&&++enter_delay>2)
  {
   enter_lock=0;
   sptr->SetValue =Speed_Set;
   start=1;
  }
}
else
{
  enter_lock=1;
  enter_delay=0;
}
}
/*****************************************************************************************
*函数名:void timer0(void)
*函数功能:定时器0 中断函数
*函数参数:无
*****************************************************************************************/
void timer0(void) interrupt 1
{
TH0=0xfc;                    //定时1ms
TL0=0x18;
if(++counter_100ms>=100)   
{
  counter_100ms=0;
  flag_100ms=1;
}
if(++counter_10ms>=10)
{
  flag_10ms=1;
  counter_10ms=0;
}
if(PWM&&--PWM_temp==0)
{
  PWM_OUT1=!PWM_OUT1;
  if(PWM_OUT1) PWM_temp=PWM;
  else PWM_temp=100-PWM;   //PWM周期小于等于采样周期
}
}
/*****************************************************************************************
*函数名:void EIRQ0(void)
*函数功能:外部中断0处理函数 记录脉冲个数
*函数参数:无
*****************************************************************************************/
void EIRQ0(void) interrupt 0  
{
count0++;
}
/*****************************************************************************************
*函数名:viod PIDInit(void)
*函数功能:PID参数初始化
*函数参数:无
*****************************************************************************************/
void PIDInit(void)
{
// sptr->SumError = 0;
sptr->LastError = 0; //Error[-1]
sptr->PrevError = 0; //Error[-2]
sptr->Proportion = 2.3; //比例系数
sptr->Integral = 1.2;   //积分系数
sptr->Derivative = 0.1; //微分系数
sptr->SetValue = 0;
}
/*****************************************************************************************
*函数名:int PID_Calc(int MeasureValue)
*函数功能:PID算法 调节PWM增量
*函数参数:MeasureValue  测得的速度值 PID_Adjust 返回值 PWM误差修正值
*****************************************************************************************/
int PID_Calc(int MeasureValue)
{
register int iError, PID_Adjust;
iError = sptr->SetValue - MeasureValue;   //计算增加量
PID_Adjust = (int)(sptr->Proportion * iError    //E[k]项
- sptr->Integral * sptr->LastError     //E[k-1]项
+ sptr->Derivative * sptr->PrevError);    //E[k-2]项
//存储当前误差以便后面计算
sptr->PrevError = sptr->LastError;
sptr->LastError = iError;
//返回增量值
return (PID_Adjust);
}
/*****************************************************************************************
*函数名:void main(void)
*函数功能:主函数
*函数参数:无
*****************************************************************************************/
void main(void)   
{
TMOD=0x01;
TH0=0xfc;
TL0=0x18;
IT0=1;
EX0=1;
ET0=1;
TR0=1;
EA=1;
PWM_OUT1=0 ;
PWM_OUT2=0;
PIDInit();
while(1)
{
  if(flag_100ms)      //100ms采集一次脉冲数
  {
   Seep_Measure=count0;   //(600/600)*count0
   count0=0;
   flag_100ms=0;
   if(start==1)     //调整PWM
   {
    int PWM_PID;
    PWM_PID=PID_Calc(Seep_Measure);
    if((PWM+0.5*PWM_PID)<99&&(PWM+0.5*PWM_PID)>1) //防止调节比例过大 造成PWM值超出范围
    PWM=PWM+0.5*PWM_PID;              //0.5用于保证速度调整跨度过大时PWM不会过界
   }
  }
  if(flag_10ms)
  {
   keyscan();
   display();
   flag_10ms=0;
  }
}
}

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享淘帖 顶 踩
回复

使用道具 举报

沙发
ID:584814 发表于 2019-11-6 20:20 | 只看该作者
带着学习的目的看了一遍,果然没看懂,但发现这句注释:“//100ms采集一次脉冲数”...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表