先把错误贴出来;;;;;
Build target 'Target 1'
assembling STARTUP.A51...
compiling zuoyi.c...
ZUOYI.C(18): error C141: syntax error near ';'
ZUOYI.C(78): error C141: syntax error near ';'
Target not created
说是delay函数错误,我无语了 ,之前一直这样写。跪求原因。。。
#include<reg52.h>
#define uchar unsigned char;
#define uint unsigned int;
uchar code table[]={0x3f,0x06,0x5b,0x4f,0x66,
0x6d,0x7d,0x07,0x7f,0x6f};// 显示段码值0~9
uchar code table1[]={0xfe,0xfd,0xfb,0xf7,0xef,
0xdf,0xbf,0x7f};//分别对应相应的数码管点亮,即位码
sbit dula=P2^2;
sbit wela=P2^3;
uint t;
//void display(uchar firstbit,uchar num);
//uchar tempdata[9];
void delay(uint t);
void main()
{
while(1)
{
wela=1;
P1=table1[7];
wela=0;
dula=1;
P1=table[0];
dula=0;
delay(200);
wela=1;
P1=table1[6];
wela=0;
dula=1;
P1=table[0];
dula=0;
delay(200);
wela=1;
P1=table1[5];
wela=0;
dula=1;
P1=table[0];
dula=0;
delay(200);
/*uchar j;
for(j=0;j<8;j++)
{
tempdata[8-j]=table[0];
templdata[8-j+1]=0;
display(0,8);
}*********/
}
}
/*void display(uchar firstbit,uchar num)
{
uchar i;
for(i=0;i<num;i++)
{
wela=1;
P1=table1[i+firstbit];
wela=0;
dula=1;
P1=tempdata;
dula=0;
delay(200);
}
}*/
void delay(uint t)
{
while(--t);
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>