1
0
forked from me/IronOS

Swap breakpoints to resets to try and prevent lockups

This commit is contained in:
Ben V. Brown
2018-03-29 21:36:16 +11:00
parent 762236b485
commit fe5ee91104
3 changed files with 15 additions and 23 deletions

View File

@@ -170,7 +170,7 @@ static void MX_IWDG_Init(void) {
hiwdg.Instance = IWDG;
hiwdg.Init.Prescaler = IWDG_PRESCALER_256;
hiwdg.Init.Reload = 50;
hiwdg.Init.Reload = 100;
HAL_IWDG_Init(&hiwdg);
}