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.

CC1310 外部中断唤醒问题

/** @brief Configure wakeup (from shutdown) on pins
 *
 *  @param aPinCfg #PIN_Config list identifying pin ID and relevant pin
 *                 configuration as one of:
 *                 - #PINCC26XX_NO_WAKEUP      (default)
 *                 - #PINCC26XX_WAKEUP_POSEDGE
 *                 - #PINCC26XX_WAKEUP_NEGEDGE
 *  @return #PIN_SUCCESS if successful, else error code
 *  @todo   Define properly
 *  @par Usage
 *       @code
 *       PIN_setWakeup(NULL, PIN_ID(9)|PIN_WAKEUP_NEGEDGE);
 *       Power_shutdown(0, 0);
 *       @endcode
 */
extern PIN_Status PINCC26XX_setWakeup(const PIN_Config aPinCfg[]);

 PINCC26XX_setWakeup的引脚配置表里能支持两个引脚吗,也就是两个引脚里任意一个引脚都可以唤醒?