HAL_Init initializes Systick, then SystemClock_Config changes the clock?
In the cubeMX default code the order is:HAL_Init(); and then SystemClock_Config();HAL_Init() sets up the Systick Timer with HAL_InitTick().Afterwards SystemClock_Config changes the Clock setup (to HSE in my case), but HAL_InitTick() is not called aga...