Resolved! HAL_Delay function corner case not covered
Hi there, this is the default implementation of HAL_Delay function for stm32h7xx_hal.c (and I assume many other hals too)__weak void HAL_Delay(uint32_t Delay) { uint32_t tickstart = HAL_GetTick(); uint32_t wait = Delay; /* Add a freq to guara...