LM3S9b96 系統(tǒng)延時(shí)和計(jì)數(shù)延時(shí)
函數(shù)原型:
void SysCtlDelay (unsigned long ulCount)
參數(shù):
ulCount 是要執(zhí)行的延時(shí)循環(huán)反復(fù)的次數(shù)。
描述:
該函數(shù)提供了一個(gè)產(chǎn)生恒定長度延時(shí)的方法。它是用用匯編寫的,以保持跨越工具鏈的
延時(shí)一致,從而避免了在應(yīng)用上依據(jù)工具鏈來調(diào)節(jié)延時(shí)的要求。
循環(huán)占用3個(gè)周期/循環(huán)。
返回:
無。
void Delay(unsigned long nCount)
{
for(; nCount != 0; nCount--);
}
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/gpio.h"
#include "driverlib/sysctl.h"
/* 用于調(diào)試 PF1 <-> LED -----------------------------------------------------*/
#define LED_PERIPH SYSCTL_PERIPH_GPIOF
#define LED_PORT GPIO_PORTF_BASE
#define LED_PIN GPIO_PIN_1
#define LED_OFF 1 << 1
#define LED_ON ~(1 << 1) // 低電平點(diǎn)亮LED
void Delay(unsigned long nCount)
{
for(; nCount != 0; nCount--);
}
int main(void)
{
// Set the clocking to run directly from the crystal.
SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN | SYSCTL_XTAL_16MHZ);
SysCtlPeripheralEnable(LED_PERIPH); // 使能LED所在的GPIO端口
GPIOPinTypeGPIOOutput(LED_PORT, LED_PIN); // 設(shè)置LED所在管腳為輸出
while (1)
{
GPIOPinWrite(LED_PORT, LED_PIN, LED_ON); // 點(diǎn)亮LED
Delay(0xfff); // 實(shí)驗(yàn)測得延時(shí)2.5ms
GPIOPinWrite(LED_PORT, LED_PIN, LED_OFF); // 熄滅LED
Delay(0xfff); // 實(shí)驗(yàn)測得延時(shí)2.5ms
/*
GPIOPinWrite(LED_PORT, LED_PIN, LED_ON); // 點(diǎn)亮LED
SysCtlDelay(SysCtlClockGet() / 3000); // 精確延時(shí)1ms
GPIOPinWrite(LED_PORT, LED_PIN, LED_OFF); // 熄滅LED
SysCtlDelay(SysCtlClockGet() / 3000); // 精確延時(shí)1ms
*/
}
}
系統(tǒng)時(shí)鐘 | 16M | 50M |
計(jì)數(shù)延時(shí):Delay(0xfff); | 2.5ms | 819us |
系統(tǒng)延時(shí):SysCtlDelay(SysCtlClockGet() / 3000); | 1ms | 1ms |
//*****************************************************************************
//
// 精確延時(shí)nms
//
//*****************************************************************************
void Delay(DWORD nms)
{
SysCtlDelay((SysCtlClockGet() / 3000) * nms);
}
評論