STM32F3 and IWDG activation
Hi,
I'm currently working on a project with STM32F303RC.
I have problems with Internal watchdog. It seems to be activated every startup even if I don't enable it by the CubeMX.
Starting the application with IWDG disabled make my board to continuous reset.
If I enable IWDG and I call the HAL_IWDG_Refresh(&hiwdg); command the system works properly.
This is quite strange for me.
After some researches on this forum I tried also to modify Option bytes. If I select WDG_SW, the system works even if I don't enable and refresh IWDG.
Why does I need to change option bytes in order to let the IWDG disabled?