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.
各位大神好,我又来发帖了,依然是挑TI的错 我用ccs自带的时钟,观察DELAY_US(100),使用了15005个时钟周期。 但我如果修改: DSP28x_usDelay(((((long double) A * 1000.0L) / (long double)CPU_RATE) - 9.0L) / 5.0L),将9.0L改成14.0L, 即修改后: DSP28x_usDelay(((((long double) A * 1000.0L) / (long double)CPU_RATE) - 14.0L) / 5.0L) 那么DELAY_US(100),使用了15000个时钟周期。这似乎才是正确的, 这是为什么?TI自带的这个延迟修正函数错了吗