keil调试一直出现*** error 56: can't open file还有测试.C(38): error C141: syntax error near 'void'
#include"reg52.h"#defineucharunsignedchar#defineuintunsignedintuchara;ucharx=1;ucharc...
#include"reg52.h"
#define uchar unsigned char
#define uint unsigned int
uchar a;
uchar x=1;
uchar code sin[256]={0x80,0x83,0x86,0x89,0x8d,0x90,0x93,0x96,
0x99,0x9c,0x9f,0xa2,0xa5,0xa8,0xab,0xae,
0xb1,0xb4,0xb7,0xba,0xbc,0xbf,0xc2,0xc5,
0xc7,0xca,0xcc,0xcf,0xd1,0xd4,0xd6,0xd8,
0xda,0xdd,0xdf,0xe1,0xe3,0xe5,0xe7,0xe9,
0xea,0xec,0xee,0xef,0xf1,0xf2,0xf4,0xf5,
0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,
0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,
0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6,
0xf5,0xf4,0xf2,0xf1,0xef,0xee,0xec,0xea,
0xe9,0xe7,0xe5,0xe3,0xe1,0xde,0xdd,0xda,
0xd8,0xd6,0xd4,0xd1,0xcf,0xcc,0xca,0xc7,
0xc5,0xc2,0xbf,0xbc,0xba,0xb7,0xb4,0xb1,
0xae,0xab,0xa8,0xa5,0xa2,0x9f,0x9c,0x99,
0x96,0x93,0x90,0x8d,0x89,0x86,0x83,0x80,
0x80,0x7c,0x79,0x76,0x72,0x6f,0x6c,0x69,
0x66,0x63,0x60,0x5d,0x5a,0x57,0x55,0x51,
0x4e,0x4c,0x48,0x45,0x43,0x40,0x3d,0x3a,
0x38,0x35,0x33,0x30,0x2e,0x2b,0x29,0x27,
0x25,0x22,0x20,0x1e,0x1c,0x1a,0x18,0x16,
0x15,0x13,0x11,0x10,0x0e,0x0d,0x0b,0x0a,
0x09,0x08,0x07,0x06,0x05,0x04,0x03,0x02,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,
0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
0x0a,0x0b,0x0d,0x0e,0x10,0x11,0x13,0x15,
0x16,0x18,0x1a,0x1c,0x1e,0x20,0x22,0x25,
0x27,0x29,0x2b,0x2e,0x30,0x33,0x35,0x38,
0x3a,0x3d,0x40,0x43,0x45,0x48,0x4c,0x4e,
0x51,0x55,0x57,0x5a,0x5d,0x60,0x63,0x66,
0x69,0x6c,0x6f,0x72,0x76,0x79,0x7c,0x80}
void delay(uint b)
{
uchar i,j;
for(i=b;i>0;i--)
for(j=130;j>0;j--)
}
void zhengxuan()
{
uchar i;
for(i=0;i<256;i++)
{
P0=sin[i];
delay(10);
delay(x);
}
}
void fangbo()
{
P0=250;
delay(50);delay(x);
P0=0;
delay(50);delay(x);
}
void sanjiao()
{uchar i,j;
for(i=0;i<64;i++)
{
P0=i;delay(10)
delay(x);
}
for(j=64;j>=0;j--)
{P0=j;
delay(10)
delay(x);
}
}
void juchi()
{uchar i;
for(i=64;i>=0;i--)
{P0=i;
delay(10);
delay(x);
}
}
void keydown()
{uchar temp;
P2=0x0f;
temp=P2;
if(temp!=0x0f)
{ delay(10);
if(temp!=0x0f)
{ temp=0x0f;
switch(temp) //扫描行
{
cast 0x11: a=1;break;//正弦波
cast 0x22:a=2;break;//方波
cast 0x24:a=3;break; //锯齿波
cast 0x28:a=4;break;//三角波
default:break;
}
temp=0xf0;
switch(temp)
{cast 0x11:x=x+100;break;//频率+
cast 0x12:x=x-100;break;//频率-
default:break;}
}
}
}
void main()
{
while(1)
{
keydown();
switch(a)
{cast 1:zhengxuan();break;
cast 2:fangbo();break;
cast 3:juchi();break;
cast 4:sanjiao();break;
default:break;
}
}
} 展开
#define uchar unsigned char
#define uint unsigned int
uchar a;
uchar x=1;
uchar code sin[256]={0x80,0x83,0x86,0x89,0x8d,0x90,0x93,0x96,
0x99,0x9c,0x9f,0xa2,0xa5,0xa8,0xab,0xae,
0xb1,0xb4,0xb7,0xba,0xbc,0xbf,0xc2,0xc5,
0xc7,0xca,0xcc,0xcf,0xd1,0xd4,0xd6,0xd8,
0xda,0xdd,0xdf,0xe1,0xe3,0xe5,0xe7,0xe9,
0xea,0xec,0xee,0xef,0xf1,0xf2,0xf4,0xf5,
0xf6,0xf7,0xf8,0xf9,0xfa,0xfb,0xfc,0xfd,
0xfd,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfd,
0xfd,0xfc,0xfb,0xfa,0xf9,0xf8,0xf7,0xf6,
0xf5,0xf4,0xf2,0xf1,0xef,0xee,0xec,0xea,
0xe9,0xe7,0xe5,0xe3,0xe1,0xde,0xdd,0xda,
0xd8,0xd6,0xd4,0xd1,0xcf,0xcc,0xca,0xc7,
0xc5,0xc2,0xbf,0xbc,0xba,0xb7,0xb4,0xb1,
0xae,0xab,0xa8,0xa5,0xa2,0x9f,0x9c,0x99,
0x96,0x93,0x90,0x8d,0x89,0x86,0x83,0x80,
0x80,0x7c,0x79,0x76,0x72,0x6f,0x6c,0x69,
0x66,0x63,0x60,0x5d,0x5a,0x57,0x55,0x51,
0x4e,0x4c,0x48,0x45,0x43,0x40,0x3d,0x3a,
0x38,0x35,0x33,0x30,0x2e,0x2b,0x29,0x27,
0x25,0x22,0x20,0x1e,0x1c,0x1a,0x18,0x16,
0x15,0x13,0x11,0x10,0x0e,0x0d,0x0b,0x0a,
0x09,0x08,0x07,0x06,0x05,0x04,0x03,0x02,
0x02,0x01,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x02,
0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,
0x0a,0x0b,0x0d,0x0e,0x10,0x11,0x13,0x15,
0x16,0x18,0x1a,0x1c,0x1e,0x20,0x22,0x25,
0x27,0x29,0x2b,0x2e,0x30,0x33,0x35,0x38,
0x3a,0x3d,0x40,0x43,0x45,0x48,0x4c,0x4e,
0x51,0x55,0x57,0x5a,0x5d,0x60,0x63,0x66,
0x69,0x6c,0x6f,0x72,0x76,0x79,0x7c,0x80}
void delay(uint b)
{
uchar i,j;
for(i=b;i>0;i--)
for(j=130;j>0;j--)
}
void zhengxuan()
{
uchar i;
for(i=0;i<256;i++)
{
P0=sin[i];
delay(10);
delay(x);
}
}
void fangbo()
{
P0=250;
delay(50);delay(x);
P0=0;
delay(50);delay(x);
}
void sanjiao()
{uchar i,j;
for(i=0;i<64;i++)
{
P0=i;delay(10)
delay(x);
}
for(j=64;j>=0;j--)
{P0=j;
delay(10)
delay(x);
}
}
void juchi()
{uchar i;
for(i=64;i>=0;i--)
{P0=i;
delay(10);
delay(x);
}
}
void keydown()
{uchar temp;
P2=0x0f;
temp=P2;
if(temp!=0x0f)
{ delay(10);
if(temp!=0x0f)
{ temp=0x0f;
switch(temp) //扫描行
{
cast 0x11: a=1;break;//正弦波
cast 0x22:a=2;break;//方波
cast 0x24:a=3;break; //锯齿波
cast 0x28:a=4;break;//三角波
default:break;
}
temp=0xf0;
switch(temp)
{cast 0x11:x=x+100;break;//频率+
cast 0x12:x=x-100;break;//频率-
default:break;}
}
}
}
void main()
{
while(1)
{
keydown();
switch(a)
{cast 1:zhengxuan();break;
cast 2:fangbo();break;
cast 3:juchi();break;
cast 4:sanjiao();break;
default:break;
}
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询