51单片机用c语言编译时钟程序,跪求高手帮忙看下我的程序,共阴LED上显示的是00-00-00 20

#include<reg52.h>#include<intrins.h>sbitkey1=P1^0;sbitkey2=P1^1;sbitkey3=P1^2;sbitbee... #include <reg52.h>
#include <intrins.h>
sbit key1=P1^0;
sbit key2=P1^1;
sbit key3=P1^2;
sbit beep=P1^5;
void delay(unsigned int a)
{
int i,j;
for(i=0;i<a;i++)
for(j=0;j<120;j++);
}
unsigned char display[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
unsigned char choice[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdF,0xbF,0x7F};
unsigned char count=0;
long s,m,n,z;
void system_Ini()
{
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
EA=1;
ET0=1;
TR0=1;

}

void main()
{
void system_Ini();
unsigned int i,a;

unsigned int out[10];

s=0;
loop:while(1)
{

out[0]=display[n%100/10];
out[1]=display[n%10];
out[2]=0x40;
out[3]=display[m%100/10];
out[4]=display[m%10];
out[5]=0x40;
out[6]=display[s%100/10];
out[7]=display[s%10];
if(key1==0)
{
for(a=0;a<2;a++)
{

beep=a;
delay(50);

}
while(1)
{
out[0]=display[n%100/10];
out[1]=display[n%10];
out[2]=0x40;
out[3]=display[m%100/10];
out[4]=display[m%10];
out[5]=0x40;
out[6]=display[s%100/10];
out[7]=display[s%10];
for( i=0; i<8; i++)
{
P0 = out[i];
P2 = choice[i];
delay(2);
}

if(key2==0)
{

for(a=0;a<2;a++)
{
beep=a;
delay(50);
}
break;
}
if(key3==0)
{
m=s=n=0;
goto loop;
}

}
}

for( i=0; i<8; i++)
{
P0 = out[i];
P2 = choice[i];
delay(2);
}
}
}
void timer0() interrupt 1
{

TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
count++;
if(count==20)
{
count=0;
s++;
}
if(s==60)
{
s=0;
++m;
}
if(m==60)
{
m=0;
++n;
}
}
展开
 我来答
小古而倾乐29
2011-01-17 · TA获得超过1724个赞
知道小有建树答主
回答量:1614
采纳率:0%
帮助的人:311万
展开全部
你所有调用display()和 delay()函数时候都没在后面加个分号。漏了还是???
还有:
uchar code table[]={ //显示编码
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71}
也应该在后面加个分号!!

你的分不好拿啊,该用分号的不用,不该用的地方用了,还有括号你用了很多中文的括号。
现在帮你改了,你自己好好对一下了,反正编译通过了,运行结果你自己看吧,我没你的目标板,运行不了。

#include<reg51.h>

#define uchar unsigned char//宏定义
#define uint unsigned int
sbit dula=P2^6; //段控制位
sbit wela=P2^7; //位控制位
uchar miao,fen,aa,n1,n2,n3,n4;
uchar code table[]={ //显示编码
0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};

void delay(uint z); //延时程序声明
void init(void);//初始化程序声明
void display(uchar n1 ,uchar n2,uchar n3,uchar n4); //显示程序声明

void main() //主程序
{
init(); //调用初始化程序
while(1) //进入大循环
{
if(aa==20) //判断是否到了1S
{
miao++; //秒数加1
if(miao==60) //判断是否到了60秒
{
miao=0; //秒数清0
fen++; //分数加1
if(fen==60) //判断是否到了60分
{
fen=0; //分数到60则清0
}

n1=fen/10; //第一个数码管显示分的十位
n2=fen%10; //第二个数码管显示分的个位
n3=miao/10; //第三个数码管显示秒的十位
n4=miao%10; //第四个数码管显示秒的个位
}
display(n1,n2,n3,n4);
}

}
}

void delay(uint z) //延时程序
{
uint x,y;
for(x=z;x>0;x--)
for(y=110;y>0;y--);
}

void display(uchar n1 ,uchar n2,uchar n3,uchar n4)
{
dula=1; //开段选
P0=table[n1]; //送分的十位
dula=0; //关段选
P0=0xff; //消隐
wela=1; //开位选
P0=0xfe; //选通分的十位
wela=0; //关位选
P0=0xff; //消隐
delay(1); //延时

dula=1; //开段选
P0=table[n2]; //送分的个位
dula=0; //关段选
P0=0xff; //消隐
wela=1; //开位选
P0=0xfd; //选通分的个位
wela=0; //关位选
P0=0xff; //消隐
delay(1); //延时

dula=1; //开段选
P0=table[n3]; //送秒的十位
dula=0; //关段选
P0=0xff; //消隐
wela=1; //开位选
P0=0xfb; //选通秒的十位
wela=0; //关位选
P0=0xff; //消隐
delay(1); //延时

dula=1; //开段选
P0=table[n4]; //送秒的个位
dula=0; //关段选
P0=0xff; //消隐
wela=1; //开位选
P0=0xf7; //选通秒的个位
wela=0; //关位选
P0=0xff; //消隐
delay(1); //延时
}

void init(void)
{

}

void timer0(void) interrupt 1 using 1
{
TH0=(65536-50000)/256; //求模
TL0=(65536-50000)%256; //求余
aa++;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式