STM32F767 Window Watchdog Initialize Problem (System Always Get Reset)
Hi for everyone,
I try to implement window watchdog to my system. I got reset every single time during enabling watchdog in HAL_WWDG_Init() function and exactly WRITE_REG(hwwdg->Instance->CR, (WWDG_CR_WDGA | hwwdg->Init.Counter)); here.
These are my watchdog configuration
hwwdg.Instance = WWDG;
hwwdg.Init.Prescaler = WWDG_PRESCALER_8;
hwwdg.Init.Window = 64;
hwwdg.Init.Counter = 127;
hwwdg.Init.EWIMode = WWDG_EWI_DISABLE;
I want to start watchdog and feed periodically but now, I just got reset and even dont even initialize successfully. It is default init function of library as you know. What should I do to successfully initialize Watchdog, feed it periodically, and ensure it runs properly?
I will be grateful for your help.
