#include "inc/lm3s9b96.h"
#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "inc/hw_ints.h"
#include "driverlib/interrupt.h"
#include "driverlib/gpio.h"
#include "driverlib/watchdog.h"
#include "driverlib/timer.h"
#include "driverlib/sysctl.h"
/* 用于调试 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) // 低电平点亮LED
//*****************************************************************************
//
// 延时函数
//
//*****************************************************************************
void Delay(volatile signed long nCount)
{
for(; nCount != 0; nCount--);
}
//*****************************************************************************
//
// LED初始化函数,用于调试timer, watchdog等
//
//*****************************************************************************
void LED_Init(void)
{
// 使能LED所在的GPIO端口
SysCtlPeripheralEnable(LED_PERIPH);
// 设置LED所在管脚为输出
GPIOPinTypeGPIOOutput(LED_PORT, LED_PIN);
// 熄灭LED(默认LED是点亮的,低电平点亮LED)
GPIOPinWrite(LED_PORT, LED_PIN, LED_OFF);
}
//*****************************************************************************
//
// 看门狗初始化函数
//
//*****************************************************************************
void Watchdog_Init(void)
{
// 使能看门狗
SysCtlPeripheralEnable(SYSCTL_PERIPH_WDOG0);
// 使能看门狗中断
IntEnable(INT_WATCHDOG);
// 设置看门狗定时器重载值(8000000个系统时钟周期)
WatchdogReloadSet(WATCHDOG0_BASE, SysCtlClockGet() / 2);
WATCHDOG0_TEST_R = 0x100;
// 使能看门狗复位输出
WatchdogResetEnable(WATCHDOG0_BASE);
// 看门狗中断使能
WatchdogEnable(WATCHDOG0_BASE);
}
//*****************************************************************************
//
// 主函数
//
//*****************************************************************************
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);
LED_Init();
Watchdog_Init();
IntMasterEnable(); // 开总中断
while (1)
{
}
}
//*****************************************************************************
//
// This feeds the dog and winks the LED
//
//*****************************************************************************
void WatchdogIntHandler(void)
{
// 清除看门狗定时中断
WatchdogIntClear(WATCHDOG0_BASE);
// 置反LED灯状态
GPIOPinWrite(LED_PORT, LED_PIN, (GPIOPinRead(LED_PORT, LED_PIN) ^ LED_PIN));
}
上一篇:LM3S9B96 的以太网配置
下一篇:LM3S9B96 的UART以中断方式收发数据
推荐阅读最新更新时间:2024-03-16 15:02