I know sounds dumb, but how do you configure SysTick
I need to run SysTick every microseconds instead of every millisecond. So I called: SysTick_Config(SystemCoreClock / 1000000);except that delay never ended, because the interrupt was low priority so: HAL_InitTick(TICK_INT_PRIORITY);Except this s...