一直不知道哪里出问题了,一直DB口都是输入高电平,求大神帮忙看下,哪里出问题了
#include<reg52.h>
/*************
0804
*************/
sbit LDCS=P3^0;
sbit LDRW=P3^1;
sbit LDRD=P3^2;
/****************
延时
****************/
void delay(int x)
{
for(;x>0;x--)
;
}
void main()
{
/***********
0804
***********/
int x,y;
int a,b,c;
LDCS=0;
LDRW=0;
delay(30);
LDRW=1;
LDCS=1;
delay(50);
LDCS=0;
LDRW=0;
delay(30);
LDRD=1;
LDCS=1;
}
-
一周热门 更多>