Hi,
We developed a custom board based on CC1352P.
Wakeup ( from shutdown) on pin trigger worked perfectly till SimpleLInk SDK 5.20.00.52.
After upgrading to SimpleLInk SDK 5.30.01.01, Wakeup from GPIO trigger is not working.
Source Code :
/* Wake-up Button pin table */
PIN_Config ButtonTableWakeUp[] = {
CONFIG_GPIO_BTN1 | PIN_INPUT_EN | PINCC26XX_NOPULL | PINCC26XX_WAKEUP_POSEDGE,
PIN_TERMINATE /* Terminate list */
};
...
...
/* Configure DIO for wake up from shutdown */
PINCC26XX_setWakeup(ButtonTableWakeUp);
/* Go to shutdown */
Power_shutdown(0, 0);