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.

ADS1260: SysCtlDelay函数定义

Part Number: ADS1260
Other Parts Discussed in Thread: ADS1255

在官网例程中,在 interface.c 文件中有函数
void delay_ms(uint32_t time_ms)
{
/* --- INSERT YOUR CODE HERE ---
* Delay for a number of milliseconds, as specified by "time_ms".
*
* The following code shows an example using TivaWare?..
* NOTE: In this example 40,000 system ticks is 1 ms.
*/
uint32_t ticks = 40000 * time_ms;
SysCtlDelay(ticks);
}

但是SysCtlDelay()这个函数的定义没有写出来,这是跟MCU有关吗?