What would be the proper method to give a few cycle time delays like in nanoseconds?
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.
What would be the proper method to give a few cycle time delays like in nanoseconds?
Hi,
You can either use the CPU timer to create delay. You can also write your own delay function consisting of "nop" operations. One "nop" instruction takes one CPU cycle.
There is also a function "DELAY_US()" in C2000Waere examples (DSP2833x_Examples.h) - it can give you delay in microseconds.
Best Regards
Siddharth
Why can't you use a timer for a delay though?