Question
HAL_Delay and interrupts?
Hello,
If I am using an external interrupt on a GPIO pin HAL_Delay() in my program's main() does not work.
while (1)
{
serprintf("Before HAL Delay");
HAL_Delay(500);
serprintf("After HAL Delay");
}"After HAL Delay" never happens. I've read a few threads that indicate that you should not use HAL_Delay() in the interrupt function, which is fine. I am not doing that.
If I disable the interrupt, the main loop works as expected.
