当使用SysTick作为时基时,stm32g4xx_hal.c中的HAL_Init(void)这样定义:使用systick作为时基源来配置1ms的tick,该函数是一个弱化函数。 /* Use systick as time base source and configure 1ms tick (default clock after Reset is HSI) */
if(HAL_InitTick(TICK_INT_PRIORITY) != HAL_OK)
{
return HAL_ERROR;
}