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.

CC2640R2F模块可以进入shutdown模式但是io无法唤醒模块

Other Parts Discussed in Thread: CC2640R2F

我是第一次用CC2640R2F这类芯片,我的程序可以进入shutdown模式,但是io无法唤醒模块,整个程序中只有三行相关代码
//IO配置
#define KEY_POWER     IOID_2
const PIN_Config GPIOConfig[] = {
KEY_POWER | PIN_INPUT_EN | PIN_PULLUP | PINCC26XX_WAKEUP_NEGEDGE ,
PIN_TERMINATE
};
//进入shutdown模式
PINCC26XX_setWakeup(GPIOConfig);
Power_shutdown(0, 0);