2019-07-15 19:49发布
依然落叶飘零 发表于 2014-5-10 10:07 我昨天看了一下了,刚开始以为是d =dat * 5000.000 / 256;溢出错误,后来发觉不对。 现在再次看看发现是这 ...
最多设置5个标签!
现附上程序,求查错:#include <REG51.h>
#include <1602_Drive.h>
/******************************************************************
* 定义接口: LCD1602的D0~D7接P0口
* 液晶显示器的接口“1602_Drive.h”库函数中已经定义
* 定义待测方波频率的接口:
* P3^5(T0口)做时钟输入接口;
******************************************************************/
//用测量脉冲次数的方法时定义的定时1s的参数
#define THCLK 0x3c
#define TLCLK 0xb0
#define CntNum 20
//定义中间变量
unsigned int Cnt;
unsigned int tmp;
unsigned char outcnt[8];
unsigned char table[]="U=0.000V";
unsigned int dat;
sbit OE = P1^0;
sbit EOC = P1^1;
sbit ST = P1^2;
sbit P23 = P2^3;
sbit P24 = P2^4;
sbit P25 = P2^5;
sbit P26 = P2^6;
sbit P27 = P2^7;
sbit P30 = P3^0;
sbit P31 = P3^1;
sbit P32 = P3^2;
//将测量的整数装换为标准有效的字符串
void NumToChar(void)
{
unsigned char i;
outcnt[0]=tmp/10000+48;tmp%=10000;
outcnt[1]=tmp/1000+48;tmp%=1000;
outcnt[2]=tmp/100+48;tmp%=100;
outcnt[3]=tmp/10+48;tmp%=10;
outcnt[4]=tmp+48;
outcnt[5]='H';
outcnt[6]='z';
outcnt[7]=' ';
for(i=0;i<4;i++) //将字符中数字的最高有效位之前的'0'清空为‘ ’。
{
if(outcnt=='0')outcnt=' ';
else break;
}
}
//静态显示文本
void Static_LCD_Print()
{
GotoXY(0,0);//GotoXY在1602_Drive.h中有定义
Print("Freq is:");//Print在1602_Drive.h中有定义
GotoXY(0,1);
Print("Amp is:");
}
//动态显示数据
void Dynamic_LCD_Print()
{
NumToChar();
GotoXY(9,0);
Print(outcnt);
}
void Read_0809 ()
{
ST = 0;
ST = 1;
ST = 0;
while(EOC == 0);
OE = 1;
dat =P23*2^7+P24*2^6+P25*2^5+P26*2^4+P27*2^3+P30*2^2+P31*2^1+P32*2^0;
OE = 0;
}
void LCD_Display()
{
unsigned int d ;
Read_0809();
d =dat * 5000.000 / 256;
table[2]=d/1000+'0';
table[4]=d/100%10+'0';
table[5]=d/10%10+'0';
table[6]=d%10+'0';
GotoXY(8,1);
Print(table);
}
void Initial_C51()
{
TH0=TL0=0;
TH1=THCLK;
TL1=TLCLK;
TR0=0;
TMOD=0x15;
IE=0x88;
TR1=0;
Cnt=CntNum;
}
void timer1() interrupt 3 //定时50ms
{
TL1=TLCLK;
TH1=THCLK;
if(--Cnt==0)
{
TR0=0;
TR1=0;
Cnt=CntNum;
tmp=TH0*256+TL0;
TH0=TL0=0;
Dynamic_LCD_Print();
TR0=1;
TR1=1;
}
}
void main(void)
{
Initial_C51();
LCD_Initial();
Static_LCD_Print();
P1=0x3f;
LCD_Display();
TR0=1;
TR1=1;
do
{ //空循环用于执行其他任务
}while(1);
}
现在再次看看发现是这个计算式的问题。
dat =P23*2^7+P24*2^6+P25*2^5+P26*2^4+P27*2^3+P30*2^2+P31*2^1+P32*2^0;
“^”并不是表示多少次方,他是按位异或。并不是计算器上面表示的多少次方。
给为下面的表达式试试。
dat =P23*128+P24*64+P25*32+P26*16+P27*8+P30*4+P31*2+P32*1;
按照上述方法修改了下,发现编译无法通过了0809+1602.C(76): error C193: '+': bad operand type
其实上述方法之前试过,就是因为这个错误我才改成
dat =P23*2^7+P24*2^6+P25*2^5+P26*2^4+P27*2^3+P30*2^2+P31*2^1+P32*2^0;
这种形式的
一周热门 更多>