LM3S9B96 中断映射表的配置
// I2C1 Master and Slave
IntDefaultHandler, // Quadrature Encoder 1
IntDefaultHandler, // CAN0
IntDefaultHandler, // CAN1
IntDefaultHandler, // CAN2
IntDefaultHandler, // Ethernet
IntDefaultHandler, // Hibernate
IntDefaultHandler, // USB0
IntDefaultHandler, // PWM Generator 3
IntDefaultHandler, // uDMA Software Transfer
IntDefaultHandler, // uDMA Error
IntDefaultHandler, // ADC1 Sequence 0
IntDefaultHandler, // ADC1 Sequence 1
IntDefaultHandler, // ADC1 Sequence 2
IntDefaultHandler, // ADC1 Sequence 3
IntDefaultHandler, // I2S0
IntDefaultHandler, // External Bus Interface 0
GPIO_Port_J_ISR // GPIO Port J
};
下面是中断映射表配置例子的main.c文件:#include "inc/hw_memmap.h"
#include "inc/hw_types.h"
#include "driverlib/gpio.h"
#include "driverlib/uart.h"
#include "utils/uartstdio.h"
#include "driverlib/sysctl.h"
#include "driverlib/interrupt.h"
#include "inc/hw_ints.h"
//*****************************************************************************
// 数据类型定义区
//*****************************************************************************
typedef unsigned char BYTE; // 8 bit
typedef unsigned short WORD; // 16 bit
typedef unsigned long DWORD; // 32 bit
typedef enum {FALSE = 0, TRUE = !FALSE} bool;
/* 寄存器地址 ---------------------------------------------------------------*/
#define GPIO_PORTF_APB_DIR_R 0x40025400
#define GPIO_PORTF_APB_DEN_R 0x4002551C
/* 用于调试 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_ON);
}
//*****************************************************************************
//
// PJ7管脚设置为,双沿触发中断方式
//
//*****************************************************************************
void GPIO_PJ7_Init(void)
{
// 使能GPIOJ端口
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOJ);
// 设置PJ7管脚为输入
GPIOPinTypeGPIOInput(GPIO_PORTJ_BASE, GPIO_PIN_7);
// 配置PJ7管脚带弱上拉电阻
GPIOPadConfigSet(GPIO_PORTJ_BASE, GPIO_PIN_7, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_STD_WPU);
// 设置PJ7管脚的中断类型,双沿触发
GPIOIntTypeSet(GPIO_PORTJ_BASE, GPIO_PIN_7, GPIO_BOTH_EDGES);
UARTprintf("PJ7 is high at begin ->\n");
// 使能GPIOJ端口中断
IntEnable(INT_GPIOJ);
// 使能PJ7管脚的中断
GPIOPinIntEnable(GPIO_PORTJ_BASE, GPIO_PIN_7);
}
//*****************************************************************************
//
// This function sets up UART2 to be used for a console to display information
// as the example is running.
//
//*****************************************************************************
void InitConsole(void)
{
// Enable GPIO port D which is used for UART2 pins.
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOD);
// Select the alternate (UART) function for these pins.
GPIOPinTypeUART(GPIO_PORTD_BASE, GPIO_PIN_0 | GPIO_PIN_1);
// Configure the pin
LM3S9B96中断映射表配 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)