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 sets SysTick back to milliseconds. And if you reverse the order the Config set the interrupt to low priority. So either I am not using the preferred functions (I did get them from an example) or ???
Thanks in Adcance
