Right now I am just going into an infinite loop when I get a reset. I've tracked the problem down to a statement in HAL_InitTick(). It appears to be the HAL_SYSTICK_Config call in the section of code below. If I replace that call with a true condi...
It was late and I wrote external interrupt, not external reset. That was my mistake. I have slimmed my code down to a loop that toggles an output. There is no watchdog. As suggested I did not call HAL_Init() or SystemClock_Config() and I saw no ...
I did as you suggested and simplified my code. With calls to HAL_Init and SystemClock_Config() removed and the software simply toggling an output, I do not experience any external interrupts. When I call HAL_Init or SystemClock_Config() an external...