This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] CC2640R2L:CC2640R2L

Guru**** 1828310 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/bluetooth-group/bluetooth/f/bluetooth-forum/1189576/cc2640r2l-cc2640r2l

器件型号:CC2640R2L

你(们)好

我正在尝试在 GPIO 发生变化时获取中断。 我有以下代码:

#define CC2640R2_SOPHI_PIN_PW_ENABLE_DETECT IOID_11

  GPIO_init()
  GPIO_setConfig (CC2640R2_SOPHI_PIN_PW_ENABLE_DETECT、GPIO_CFG_IN_NOPULL | GPIO_CFG_IN_INT_INT_INT_BUT_FEPTS);
  GPIO_setCallback (CC2640R2_SOPHI_PIN_PW_ENABLE_DETECT、SOPHIPOWER_pwCallbackFxn);




在调试器中,我看到“CC2640R2_SOPHI_PIN_PW_ENABLE_DETECT”的值正在更改
但是、我没有在 IO 更改时获得中断、并且永远不会到达 pwCallbackFxn (回调)。  
该板是定制板、但 BLE 按预期运行、我收到中断(因为 BLE 正在运行)

我应该检查什么?

Moshe