STM32WB standby mode WKUPx
I'm working with the p-nucleo-wb55, and I would like to configure the pin PA0 , PC13 to wake up the MCU from Standby Mode. I configued PA0 and PC13 from STM32CubeMX to GPIO_EXTI0 and GPIO_EXTI13 respectively.
Config:
PA0 : External Interrupt with Falling edge , Pull-up
PC13 : External Interrupt with Falling edge , Pull-up
In my code I set the sequence that I follow to enable the WKUP line is:
HAL_PWR_EnableWakeUpPin(PWR_WAKEUP_PIN1_LOW);
HAL_PWR_EnableWakeUpPin(PWR_WAKEUP_PIN2_LOW);
HAL_PWR_EnterSTANDBYMode();
But interrupt from PA0 , PC13 not working in standby mode.
I reference from
RM0434: Multiprotocol wireless 32-bit MCU Arm®-based Cortex®-M4 with FPU, Bluetooth® Low-Energy and 802.15.4 radio solution
