This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

关于tm4c123gh6pm的 systick 时钟的调用问题

void SysTick_Init(void )
{
SysTickPeriodSet(SysCtlClockGet()/1000);
SysTickIntEnable();
SysTickEnable();
}

我想调用这三个函数 可是找不到 在哪个h文件 请问这个是在哪个文件的函数呢...

  • 您可以在TivaWare的安装文件夹内查看,路径为 \ti\TivaWare_C_Series-2.1.4.178\driverlib内

    systick.c - Driver for the SysTick timer in NVIC.

    systick.h - Prototypes for the SysTick driver.