共2条
1/1 1 跳转至页
easyarm2131,DelayNs 求教:easyarm2131里的延时程序DelayNs
问
买了周立功的easyARM2131,其中有个延时函数很多地方都出现了,却不知道它到底延时多久。
void DelayNs(uint32 dly)
{
uint32 i;
for(;dly>0;dly--)
for(i=0;i<50000;i++);
}
在51单片机的外面如果接12M晶振的话,一个指令周期的时间是1us,如果上面这段程序是在51单片机里应该是延时50000×dly(us)。
我不知道lpc2131一个指令周期是多长时间,是不是因为它的流水线所以不能准确计算出一条指令的时间呢?
求教! 答 1: 愚见可以计算2131在1us内执行多少次加法运算 答 2: 恩?我只想知道DelayNs延迟多久啊谁知道啊,指点我一下啊? 答 3: 装个keil,来仿真一下吧。相差不远的。另外,跟时钟源以及倍频设置等有关。 答 4: 呵呵,我就是不知道跟倍频设置有多大关系啊我知道51的话,12M晶振,12分频,一个时钟周期是1us,在ARM里有Fosc,cclk,Fcco几个值,我就搞不清楚了,圈圈能详解一下吗?呵呵 答 5: 你可以用中断获得比较准确的延时long timeval;
/* Timer Counter 0 Interrupt executes each 10ms @ 60 MHz CPU Clock */
void tc0 (void) __irq {
++timeval;
T0IR = 1; // Clear interrupt flag
VICVectAddr = 0; // Acknowledge Interrupt
}
/* Setup the Timer Counter 0 Interrupt */
void init_timer (void) {
T0MR0 = 149999; // 10mSec = 150.000-1 counts
T0MCR = 3; // Interrupt and Reset on MR0
T0TCR = 1; // Timer0 Enable
VICVectAddr15 = (unsigned long)tc0; // set interrupt vector in 0
VICVectCntl15 = 0x20 | 4; // use it for Timer 0 Interrupt
VICIntEnable = 0x00000010; // Enable Timer0 Interrupt
}
void wait (unsigned int t) { /* wait function */
unsigned long i;
if (t<1)
t=1;
i = timeval;
while ((i + t) != timeval);
}
这样在主函数里面用wait(10) 就延时100MS了 答 6: 你可以用中断获得比较准确的延时long timeval;
/* Timer Counter 0 Interrupt executes each 10ms @ 60 MHz CPU Clock */
void tc0 (void) __irq {
++timeval;
T0IR = 1; // Clear interrupt flag
VICVectAddr = 0; // Acknowledge Interrupt
}
/* Setup the Timer Counter 0 Interrupt */
void init_timer (void) {
T0MR0 = 149999; // 10mSec = 150.000-1 counts
T0MCR = 3; // Interrupt and Reset on MR0
T0TCR = 1; // Timer0 Enable
VICVectAddr15 = (unsigned long)tc0; // set interrupt vector in 0
VICVectCntl15 = 0x20 | 4; // use it for Timer 0 Interrupt
VICIntEnable = 0x00000010; // Enable Timer0 Interrupt
}
void wait (unsigned int t) { /* wait function */
unsigned long i;
if (t<1)
t=1;
i = timeval;
while ((i + t) != timeval);
}
这样在主函数里面用wait(10) 就延时100MS了
void DelayNs(uint32 dly)
{
uint32 i;
for(;dly>0;dly--)
for(i=0;i<50000;i++);
}
在51单片机的外面如果接12M晶振的话,一个指令周期的时间是1us,如果上面这段程序是在51单片机里应该是延时50000×dly(us)。
我不知道lpc2131一个指令周期是多长时间,是不是因为它的流水线所以不能准确计算出一条指令的时间呢?
求教! 答 1: 愚见可以计算2131在1us内执行多少次加法运算 答 2: 恩?我只想知道DelayNs延迟多久啊谁知道啊,指点我一下啊? 答 3: 装个keil,来仿真一下吧。相差不远的。另外,跟时钟源以及倍频设置等有关。 答 4: 呵呵,我就是不知道跟倍频设置有多大关系啊我知道51的话,12M晶振,12分频,一个时钟周期是1us,在ARM里有Fosc,cclk,Fcco几个值,我就搞不清楚了,圈圈能详解一下吗?呵呵 答 5: 你可以用中断获得比较准确的延时long timeval;
/* Timer Counter 0 Interrupt executes each 10ms @ 60 MHz CPU Clock */
void tc0 (void) __irq {
++timeval;
T0IR = 1; // Clear interrupt flag
VICVectAddr = 0; // Acknowledge Interrupt
}
/* Setup the Timer Counter 0 Interrupt */
void init_timer (void) {
T0MR0 = 149999; // 10mSec = 150.000-1 counts
T0MCR = 3; // Interrupt and Reset on MR0
T0TCR = 1; // Timer0 Enable
VICVectAddr15 = (unsigned long)tc0; // set interrupt vector in 0
VICVectCntl15 = 0x20 | 4; // use it for Timer 0 Interrupt
VICIntEnable = 0x00000010; // Enable Timer0 Interrupt
}
void wait (unsigned int t) { /* wait function */
unsigned long i;
if (t<1)
t=1;
i = timeval;
while ((i + t) != timeval);
}
这样在主函数里面用wait(10) 就延时100MS了 答 6: 你可以用中断获得比较准确的延时long timeval;
/* Timer Counter 0 Interrupt executes each 10ms @ 60 MHz CPU Clock */
void tc0 (void) __irq {
++timeval;
T0IR = 1; // Clear interrupt flag
VICVectAddr = 0; // Acknowledge Interrupt
}
/* Setup the Timer Counter 0 Interrupt */
void init_timer (void) {
T0MR0 = 149999; // 10mSec = 150.000-1 counts
T0MCR = 3; // Interrupt and Reset on MR0
T0TCR = 1; // Timer0 Enable
VICVectAddr15 = (unsigned long)tc0; // set interrupt vector in 0
VICVectCntl15 = 0x20 | 4; // use it for Timer 0 Interrupt
VICIntEnable = 0x00000010; // Enable Timer0 Interrupt
}
void wait (unsigned int t) { /* wait function */
unsigned long i;
if (t<1)
t=1;
i = timeval;
while ((i + t) != timeval);
}
这样在主函数里面用wait(10) 就延时100MS了
共2条
1/1 1 跳转至页
回复
有奖活动 | |
---|---|
【有奖活动】分享技术经验,兑换京东卡 | |
话不多说,快进群! | |
请大声喊出:我要开发板! | |
【有奖活动】EEPW网站征稿正在进行时,欢迎踊跃投稿啦 | |
奖!发布技术笔记,技术评测贴换取您心仪的礼品 | |
打赏了!打赏了!打赏了! |
打赏帖 | |
---|---|
与电子爱好者谈读图四被打赏50分 | |
与电子爱好者谈读图二被打赏50分 | |
【FRDM-MCXN947评测】Core1适配运行FreeRtos被打赏50分 | |
【FRDM-MCXN947评测】双核调试被打赏50分 | |
【CPKCORRA8D1B评测】---移植CoreMark被打赏50分 | |
【CPKCORRA8D1B评测】---打开硬件定时器被打赏50分 | |
【FRDM-MCXA156评测】4、CAN loopback模式测试被打赏50分 | |
【CPKcorRA8D1评测】--搭建初始环境被打赏50分 | |
【FRDM-MCXA156评测】3、使用FlexIO模拟UART被打赏50分 | |
【FRDM-MCXA156评测】2、rt-thread MCXA156 BSP制作被打赏50分 |