Can't exit Stopmode using Threadx and NetxDuo on STM32 microcontroller
- used borad: NUCLEO - H563ZI
this is what i do to start StopMode (this code is the NetxDuo thread function):
static VOID nx_app_thread_entry (ULONG thread_input)
{
/* USER CODE BEGIN Nx_App_Thread_Entry 0 */
HAL_SuspendTick();
HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFI);
/* USER CODE END Nx_App_Thread_Entry 0 */
}and this is how i setup the controller:

I tried what's shown in the figure, i was expecting the execution to continue after pressing the button. If it worked i would have start to work on the Ethernet wake up.
if more information are needed i will provide them as soon as i can.

