WWDG_IRQHandler Doesn't Seem To Be Reached
I started learning about it while playing with WWDG_Example from STM32446E_EVAL.
I can enable WWDG and tie it to my EXTI button on my Discovery board.
The board will reset when the button is pressed and __HAL_RCC_GET_FLAG(RCC_FLAG_WWDGRST) == RESET.
What I have NOT been able to do is preempt the reset even though I also set WwdgHandle.Init.EWIMode = WWDG_EWI_ENABLE;
I added
void WWDG_IRQHandler(void)
{
HAL_WWDG_IRQHandler(&WwdgHandle);
}
to my stm32f4xx_it.c file and set breaks at various locations, but the handler never seems to be reached, but rather it goes straight to Reset_Handler:
I'm using the HAL in v1.24.
