Question
Configure GPIO after Wake-up from Standby mode
Hello everyone,
I have a problem, to ensure GPIO initialisation after a wake-up from standby mode...
if (__HAL_PWR_GET_FLAG(PWR_FLAG_SB) != RESET)
{
HAL_PWREx_DisablePullUpPullDownConfig();
__HAL_PWR_CLEAR_FLAG(PWR_FLAG_SB); // clear du flag standby
HAL_PWR_DeInit(); // Réinitialise la configuration Power à zero
__HAL_RCC_PWR_CLK_DISABLE();
}
//init My GPIO but it dosen't works..I have the same problem for my 3 GPIO pins, if someone have a idea ?
Thanks for reading.
