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.
请教一下,28388D中的CM4核常用的比较准确的延时函数,是哪个呢?(最好是类似CPU1核的那个延时函数)
特来请教
谢谢
您可以看一下例程内的函数
C2000Ware \driverlib\f2838x\examples\c28x_cm\led
在cm.h内
//*****************************************************************************
//
// Macro to call SysCtl_delay() to achieve a delay in microseconds. The macro
// will convert the desired delay in microseconds to the count value expected
// by the function. \b x is the number of microseconds to delay.
// The SysCtl_delay() function takes around 3 cycles per iteration plus 9
// cycles of overhead which needs to be accounted for when converting the
// microseconds delay into the number of delay loop iterations passed to the
// SysCtl_delay() function.
//
// Note that 3 cycles per iteration is valid if SysCtl_delay function resides
// in CxRAM. SxRAM is 2x slower than CxRAM and hence will consume 6 cycles per
// iteration.
//
//*****************************************************************************
#define DEVICE_DELAY_US(x) SysCtl_delay(((((long double)(x)) / (1000000.0L / \
(long double)CM_CLK_FREQ)) - 9.0L) / 3.0L)
好嘞,感谢
我这边看到他们有的在CM例程中用了SysCtl_delay(6000000);//aprox 1 sec
这个是当括号内写6000000,表示延时1S?