找回密码
 注册会员
更新自动建库工具PCB Footprint Expert 2024.04 Pro / Library Expert 破解版

流水灯的问题

[复制链接]
admin 发表于 2012-9-3 01:43:24 | 显示全部楼层 |阅读模式

本文包含原理图、PCB、源代码、封装库、中英文PDF等资源

您需要 登录 才可以下载或查看,没有账号?注册会员

×
我写好了程序,但中间for语句比较繁杂,可以用简单的语句代替吗?
#include<reg52.h>
#include <intrins.h>
#define uint unsigned int
#define uchar unsigned char
uchar temp;
uint m;
void delay(uint);
void main()
{
while(1)
{
temp=0x01;
P0=temp;
for(m=8;m>0;m--)
{
temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x03;
P0=temp;
for(m=7;m>0;m--)
{
temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x07;
P0=temp;
for(m=6;m>0;m--)
{

temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x0f;
P0=temp;
for(m=5;m>0;m--)
{

temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x1f;
P0=temp;
for(m=4;m>0;m--)
{
temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x3f;
P0=temp;
for(m=3;m>0;m--)
{

temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0x7f;
P0=temp;
for(m=2;m>0;m--)
{
temp=_crol_(temp,1);
delay(600);
P0=temp;
}
temp=0xff;
P0=temp;
for(m=1;m>0;m--)
{
temp=_crol_(temp,1);
delay(600);
P0=temp;
}
}
}
void delay(uint z)
{
uint x,y;
for(x=100;x>0;x--)
for(y=z;y>0;y--);
}
*滑块验证:
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

QQ|手机版|MCU资讯论坛 ( 京ICP备18035221号-2 )|网站地图

GMT+8, 2024-12-24 09:03 , Processed in 0.053118 second(s), 10 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表