Hi,
I am trying to put the CC2650 into the shutdown power mode and wake it up.
This is how I have my pin configured for wakeup.
PIN_Config WakeupPinTable[2];
WakeupPinTable[0] = Board_WAKE_PIN | PIN_GPIO_OUTPUT_DIS | PIN_INPUT_EN | PIN_PULLUP;
WakeupPinTable[1] = PIN_TERMINATE;
hWakeupPin = PIN_open(&wakeupPinState, WakeupPinTable);
PIN_setConfig(hWakeupPin, PINCC26XX_BM_WAKEUP, Board_WAKE_PIN | PINCC26XX_WAKEUP_NEGEDGE);
Power_shutdown(NULL);
I am not sure what to pass for Power_shutdown so this may very well be part of the problem.
By monitoring current consumption I am not seeing the SW wakeup.