自行车测速程序求助啊,有问题请教。可用程序,但是有.....

2019-07-18 10:40发布

#include <reg51.h>
#include <intrins.h>


sbit LCM_RS=P1^0;
sbit LCM_RW=P1^1;
sbit LCM_EN=P2^5;

#define BUSY                  0x80              //常量定义
#define DATAPORT         P0
#define uchar                 unsigned char
#define uint                   unsigned int
#define L                        60

uchar str0[16],str1[16],count;
uint speed;
unsigned long time;

void ddelay(uint);
void lcd_wait(void);
void display();
void initLCM();
void WriteCommandLCM(uchar WCLCM,uchar BusyC);
void STR();
void account();


/*********延时K*1ms,12.000mhz**********/

void int0_isr(void) interrupt 0         /*遥控使用外部中断0,接P3.2口*/
{
    unsigned int temp;
        time=count;
    TR0=0;
        temp=TH0;
        temp=((temp << 8) | TL0);
    TH0=0x3c;
    TL0=0xaf;
        count=0;
    TR0=1;
        time=time*50000+temp;
}

void time0_isr(void) interrupt 1        /*遥控使用定时计数器1 */
{
   TH0 =0x3c;
   TL0 =0xaf;
   count++;
}

void main(void)
{
           TMOD=0x01;                       /*TMOD T0选用方式1(16位定时) */
    IP|=0x01;                           /*INT0 中断优先*/
    TCON|=0x11;                         /*TCON  EX0下降沿触发,启动T0*/
    IE|=0x83;  
    TH0=0x3c;
    TL0=0xaf;
  
        initLCM();
           WriteCommandLCM(0x01,1);                    //清显示屏
        for(;;)
        {
                account();
                display();
        }
}

void account()
{
        unsigned long a;
        if (time!=0)
        {
                a=L*360000000/time;
        }
        speed=a;
}



void STR()
{
        str0[0]='S';
        str0[1]='p';
        str0[2]='e';
    str0[3]='e';
        str0[4]='d';
        str0[5]='=';       
        str0[6]=(speed%1000000)/100000+0x30;
        str0[7]=(speed%100000)/10000+0x30;
        str0[8]=(speed%10000)/1000+0x30;
        str0[9]=(speed%1000)/100+0x30;
        str0[11]=(speed%100)/10+0x30;
        str0[10]='.';
        str0[12]=speed%10+0x30;
        str0[13]='r';
        str0[14]='/';
        str0[15]='m';
        str0[16]=' ';
}

void ddelay(uint k)
{
    uint i,j;
    for(i=0;i<k;i++)
    {
        for(j=0;j<60;j++)
                {;}
    }
}
/**********写指令到LCD子函数************/

void WriteCommandLCM(uchar WCLCM,uchar BusyC)
{
    if(BusyC)lcd_wait();
        DATAPORT=WCLCM;
    LCM_RS=0;                   /* 选中指令寄存器*/
    LCM_RW=0;                       // 写模式
    LCM_EN=1;
        _nop_();
        _nop_();
        _nop_();
    LCM_EN=0;

}

/**********写数据到LCD子函数************/

void WriteDataLCM(uchar WDLCM)
{
    lcd_wait( );            //检测忙信号
        DATAPORT=WDLCM;
    LCM_RS=1;               /* 选中数据寄存器  */
    LCM_RW=0;                   // 写模式
    LCM_EN=1;
    _nop_();
        _nop_();
        _nop_();
    LCM_EN=0;
}

/***********lcd内部等待函数*************/

void lcd_wait(void)
{
    DATAPORT=0xff;             //读LCD前若单片机输出低电平,而读出LCD为高电平,则冲突,proteus仿真会有显示逻辑黄 {MOD}
        LCM_EN=1;
    LCM_RS=0;
    LCM_RW=1;
    _nop_();
    _nop_();
        _nop_();
    while(DATAPORT&BUSY)
        {  LCM_EN=0;
           _nop_();
           _nop_();
           LCM_EN=1;
           _nop_();
           _nop_();
        }
           LCM_EN=0;

}

/**********LCD初始化子函数***********/
void initLCM( )
{
        DATAPORT=0;
        ddelay(15);
        WriteCommandLCM(0x38,0);    //三次显示模式设置,不检测忙信号
    ddelay(5);
    WriteCommandLCM(0x38,0);
    ddelay(5);
    WriteCommandLCM(0x38,0);
    ddelay(5);

    WriteCommandLCM(0x38,1);    //8bit数据传送,2行显示,5*7字型,检测忙信号
    WriteCommandLCM(0x08,1);    //关闭显示,检测忙信号
    WriteCommandLCM(0x01,1);    //清屏,检测忙信号
    WriteCommandLCM(0x06,1);    //显示光标右移设置,检测忙信号
    WriteCommandLCM(0x0c,1);    //显示屏打开,光标不显示,不闪烁,检测忙信号
}

/****显示指定坐标的一个字符子函数****/

void DisplayOneChar(uchar X,uchar Y,uchar DData)
{
    Y&=1;
    X&=15;
    if(Y)X|=0x40;               //若y为1(显示第二行),地址码+0X40
    X|=0x80;                    //指令码为地址码+0X80
    WriteCommandLCM(X,0);
    WriteDataLCM(DData);
}

/*******显示指定坐标的一串字符子函数*****/

void DisplayListChar(uchar X,uchar Y,uchar *DData)
{
    uchar ListLength=0;
    Y&=0x01;
    X&=0x0f;
    while(X<16)
    {
        DisplayOneChar(X,Y,DData[ListLength]);
        ListLength++;
        X++;
    }
}


void display()
{

        STR();
        DisplayListChar(0,0,str0);
           DisplayListChar(0,1,str1);
}
这段自行车测速程序,我把里面的L=50,改成了L=60,但是最后speed从8km/h,变为1.24km/h,这是为什么,谁能告诉我下,谢谢啊
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
2条回答
xunfeng0862
1楼-- · 2019-07-18 11:35
speed 的变量类型为uint 最大值为 65536 * 2    而a的类型为uing long
a=L*360000000/time;
speed=a;高类型的值赋给低类型的应该会有警告的吧,会有溢出问题。
风中倩影
2楼-- · 2019-07-18 12:58
路过学习。。。。。。。。。。。。。。

一周热门 更多>