急急急!谁知到下面哪个是重复的意思.(就是去掉那个就运行一遍就停止了)
//延时子程序voiddelayms(unsignedcharms){unsignedchari;while(ms--){for(i=0;i<120;i++);}}mai...
// 延时子程序
void delayms(unsigned char ms)
{
unsigned char i;
while(ms--)
{
for(i = 0; i < 120; i++);
}
}
main()
{
unsigned char LED;
LED = 0xfe; //0xfe = 1111 1110
while(1)
{
P2 = LED;
delayms(250);
LED = LED << 1; //循环左移1位,点亮下一个LED "<<"为左移位
if(LED == 0x00 ) {LED = 0xfe; delayms(250); } // 0xfe = 1111 1110
}
} 展开
void delayms(unsigned char ms)
{
unsigned char i;
while(ms--)
{
for(i = 0; i < 120; i++);
}
}
main()
{
unsigned char LED;
LED = 0xfe; //0xfe = 1111 1110
while(1)
{
P2 = LED;
delayms(250);
LED = LED << 1; //循环左移1位,点亮下一个LED "<<"为左移位
if(LED == 0x00 ) {LED = 0xfe; delayms(250); } // 0xfe = 1111 1110
}
} 展开
2个回答
2012-05-23
展开全部
断了 死循环???
追问
单片机 流水灯只要它运行一遍 就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询