注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
545659779的个人空间 https://home.eeworld.com.cn/space-uid-517102.html [收藏] [复制] [分享] [RSS]
日志

做的流水灯程序,要求从右到做两次就停下来,可是不行?

已有 257 次阅读2013-11-28 12:49

#include
#include
#define uint unsigned int
#define uchar unsigned char
uchar temp,b;
void delay(uint z);
void main()
{
             temp=0xfe;
             P2=temp;
             b=1;
             for(b=1;b>18;b++)
             while(1)
             {
                 
                temp=_crol_(temp,1);               
                delay(9);
                P2=temp;
                b++;
                if(b>16)
                break;
              }
}

void delay(uint z)
{
         uint x,y;
         for(x=z;x>0;x--)
           for(y=14000;y>0;y--);
}

本文来自论坛,点击查看完整帖子内容。

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章