完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
以下是我写的外部中断程序,运行时按按钮无法进入中断服务程序。请给位帮忙看一下,程序有没有问题。
#include "gpio.h" #include "interrupt.h" #include "psc.h" //#include "Sys_Init.h" #include "soc_C6748.h" #include "lcdkC6748.h" volatile unsigned char flag = 0; /****************************************************************************/ /* LOCAL FUNCTION PROTOTYPES */ /****************************************************************************/ static void Delay(volatile unsigned int delay); void EVMC6748_pinmuxConfig(unsigned int in_reg, unsigned int in_mask, unsigned int in_val) ; static void InitDspIntc(void) ; static void GPIOIsr(void) ; /****************************************************************************/ /* GLOBAL VARIABLES */ /****************************************************************************/ /****************************************************************************/ /* LOCAL FUNCTION DEFINITIONS */ /****************************************************************************/ int main(void) [ int i = 0 ; PSCModuleControl(SOC_PSC_1_REGS, HW_PSC_GPIO, PSC_POWERDOMAIN_ALWAYS_ON, PSC_MDCTL_NEXT_ENABLE); EVMC6748_pinmuxConfig(6,0xF000,0x8000); GPIODirModeSet(SOC_GPIO_0_REGS, 37, GPIO_DIR_INPUT); GPIODirModeSet(SOC_GPIO_0_REGS, 37, GPIO_INT_TYPE_RISEDGE); GPIOBankIntEnable(SOC_GPIO_0_REGS, 2); InitDspIntc() ; while(1) [ i ++ ; Delay(1000000); ] ] /* ** brief This function sets up the status of interrupt. ** */ static void InitDspIntc(void) [ IntDSPINTCInit(); //initialize the interrupt controller IntGlobalEnable(); //enable DSP CPU interrupts globally IntRegister(C674X_MASK_INT4, GPIOIsr); //register the ISR in the interrupt vector table IntEventMap(C674X_MASK_INT4, SYS_INT_GPIO_B2INT); //map the system event GPIO_Bank2(BUTTON) to CPU INT4 IntEnable(C674X_MASK_INT4); //enable the CPU masked INT4 IntEventSet(SYS_INT_GPIO_B2INT); //set the EVTFLAG register of GPIO_Bank2 ] /* ** brief Interrupt Service Routine to be executed on GPIO interrupts. ** This disables the bank interrupts, clears the system interrupt ** status and pin interrupt status. This also sets flag as 1. */ static void GPIOIsr(void) [ /* Disable the interrupts for pins of bank 2 in GPIO.*/ GPIOBankIntDisable(SOC_GPIO_0_REGS, 2); /* Clear the system interrupt status in the DSPINTC*/ IntEventClear(SYS_INT_GPIO_B2INT); /* Clears the Interrupt Status of GP2[4] in GPIO.*/ GPIOPinIntClear(SOC_GPIO_0_REGS, 37); flag = 1; ] /* ** brief This function checks the insertion status of the MMC/SD card ** in the device and prints related statements on the serial ** commuincation console of the external device. ** */ /* ** brief This function can be called to generate a delay. */ static void Delay(volatile unsigned int delay) [ while(delay--); ] void EVMC6748_pinmuxConfig(unsigned int in_reg, unsigned int in_mask, unsigned int in_val) [ // unlock the system config registers. SYSCONFIG->KICKR[0] = KICK0R_UNLOCK; SYSCONFIG->KICKR[1] = KICK1R_UNLOCK; // make sure the pinmux register is cleared for the mask bits before // setting the value. CLRBIT(SYSCONFIG->PINMUX[in_reg], in_mask); SETBIT(SYSCONFIG->PINMUX[in_reg], in_val); // lock the system config registers. SYSCONFIG->KICKR[0] = KICK0R_LOCK; SYSCONFIG->KICKR[1] = KICK1R_LOCK; ] /*****************************END OF FILE************************************/ |
|
相关推荐
5 个讨论
|
|
只有小组成员才能发言,加入小组>>
341 浏览 1 评论
539 浏览 2 评论
NA555DR VCC最低电压需要在5V供电,为什么用3.3V供电搭了个单稳态触发器也使用正常?
781 浏览 3 评论
MSP430F249TPMR出现高温存储后失效了的情况,怎么解决?
655 浏览 1 评论
对于多级放大电路板,在PCB布局中,电源摆放的位置应该注意什么?
1138 浏览 1 评论
AT32F407在USART2 DMA发送数据时,接包接到了要发送的数据,程序还是处于等待传输完成的标识判断中,为什么?
69浏览 29评论
206浏览 23评论
请问下tpa3220实际测试引脚功能和官方资料不符,哪位大佬可以帮忙解答下
256浏览 20评论
请教下关于TAS5825PEVM评估模块原理图中不太明白的地方,寻求答疑
205浏览 14评论
两个TMP117传感器一个可以正常读取温度值,一个读取的值一直是0,为什么?
65浏览 13评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-25 05:23 , Processed in 1.216081 second(s), Total 67, Slave 55 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号