Part Number:CC3235SFOther Parts Discussed in Thread:ADS1299
请问在使用引脚中断时,初始化调用了GPIO_setCallback(CONFIG_ADS1299_DRDY, DRDYFxn0);
同时开启了中断GPIO_enableInt(CONFIG_ADS1299_DRDY); //开启中断,但在中断服务函数里关闭了引脚中断,发现好像没有用GPIO_disableInt(CONFIG_ADS1299_DRDY); //关闭中断,对应的中断没有被关闭,请问应该怎么才能关闭中断呢?相关的例程里没有找到如何关闭中断。
Kevin Qiu1:
关闭中断就是使用GPIO_disableInt(),查看下面说明
GPIO_disableInt() void GPIO_disableInt ( uint_least8_tindex )Disable a GPIO pin interrupt.Disables interrupts for the specified GPIO index.Parameters index GPIO index
,
wu:
我就是用GPIO_disableInt()来关闭中断的啊,但是没用,请问GPIO_disableInt()这个可以用来关闭GPIO_setCallback()产生的中断的嘛?
,
Kevin Qiu1:
wu 说:请问GPIO_disableInt()这个可以用来关闭GPIO_setCallback()产生的中断的嘛?
是的