在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
芯片精品文章合集(500篇!) 创芯人才网--重磅上线啦!
查看: 2052|回复: 2

[求助] 44b0延时程序不是太明白 求助

[复制链接]
发表于 2010-6-6 23:36:55 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

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

x
static int delayloopCount 400 void Delay(int time) // time=0: adjust the Delay function by WatchDog timer. // time>0: the number of loop time // 100us resolution. { int i,adjust=0; if(time==0) { time=200; adjust=1; delayLoopCount=400; rWTCON=((MCLK/1000000-1)<<8)|(2<<3); // 1M/64,Watch-dog,nRESET,interrupt disable rWTDAT=0xffff; rWTCNT=0xffff; rWTCON=((MCLK/1000000-1)<<8)|(2<<3)|(1<<5); // 1M/64,Watch-dog enable,nRESET,interrupt disable } for(;time>0;time--) for(i=0;i<delayLoopCount;i++); if(adjust==1) { rWTCON=((MCLK/1000000-1)<<8)|(2<<3); i=0xffff-rWTCNT; // 1count/16us????????? delayLoopCount=8000000/(i*64); //400*100/(i*64/200) } } 在这个延时程序中 如果将if 中的time delayloopcount 的值变大 延时的时间就越短 将delayloopcount=400 改为delayloopcount=4000 延时会变小 这是通过八段数码管演示看出来的 不理解 请高手指点 菜鸟敬上
 楼主| 发表于 2010-6-6 23:38:25 | 显示全部楼层
static int  delayloopCount   400
void Delay(int time)
// time=0: adjust the Delay function by WatchDog timer.
// time>0: the number of loop time
// 100us resolution.
{
    int i,adjust=0;
    if(time==0)
    {
time=200;
adjust=1;
delayLoopCount=400;
rWTCON=((MCLK/1000000-1)<<8)|(2<<3);  // 1M/64,Watch-dog,nRESET,interrupt disable
rWTDAT=0xffff;
rWTCNT=0xffff;  
rWTCON=((MCLK/1000000-1)<<8)|(2<<3)|(1<<5); // 1M/64,Watch-dog enable,nRESET,interrupt disable
    }
    for(;time>0;time--)
for(i=0;i<delayLoopCount;i++);
    if(adjust==1)
    {
rWTCON=((MCLK/1000000-1)<<8)|(2<<3);
i=0xffff-rWTCNT;   //  1count/16us?????????
delayLoopCount=8000000/(i*64); //400*100/(i*64/200)   
    }
}
在这个延时程序中 如果将if 中的time delayloopcount 的值变大 延时的时间就越短 将delayloopcount=400 改为delayloopcount=4000 延时会变小 这是通过八段数码管演示看出来的 不理解 请高手指点
   菜鸟敬上
 楼主| 发表于 2010-6-6 23:41:07 | 显示全部楼层
后面的比较清楚
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /1 下一条

小黑屋| 手机版| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-11-17 02:45 , Processed in 0.024584 second(s), 8 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表