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.
void SysTick_Init(void )
{
SysTickPeriodSet(SysCtlClockGet()/1000);
SysTickIntEnable();
SysTickEnable();
}
我想调用这三个函数 可是找不到 在哪个h文件 请问这个是在哪个文件的函数呢...