IAR軟件中的精確延時(shí)
void delay(unsigned int ms)
{
unsigned int i,j;
for( i=0;i
}
以上程序段在要求延時(shí)精度不高的場(chǎng)合可以用。但是很多的時(shí)候要用到精確的延時(shí)。
在IAR軟件中,自帶有延時(shí)的庫(kù)函數(shù)。
在intrinsics.h 頭文件中可以查詢得到。 __delay_cycles(x) x必須是常量或則是常量表達(dá)式,否則會(huì)報(bào)錯(cuò)的。x = 1時(shí)候是延時(shí)一個(gè)周期。
那么,如果這樣定義的話
#define CPU_F ((double)8000000)
#define delay_us(x) __delay_cycles((long)(CPU_F*(double)x/1000000.0))
#define delay_ms(x) __delay_cycles((long)(CPU_F*(double)x/1000.0))
在 #define CPU_F ((double)8000000) 語(yǔ)句里 8000000 修改成你當(dāng)前MSP430 的CPU的主頻頻率,即CPU的MCLK。
單位為HZ。本例中的8000000為MCLK=8MHZ 的意思。
可以得到使用的方法了:
delay_us(1); //1 微秒的延時(shí)
delay_ms(1); //1 毫秒的延時(shí)
delay_us(3.5); //延時(shí)3.5微秒
delay_ms(3.5); //延時(shí)3.5毫秒
delay_ms(1000); //延時(shí)1秒
評(píng)論