Tool/software: Code Composer Studio
Hello,
I am using function delay_us to delay 700 ns. And I use it like this
float32 pulse1=0.7;
DELAY_US(pulse1);
But the actual delay for waveform on the scope is about 10 us. I am wondering why is that. And if I use DELAY_US(0.7); the delay is almost correct. Thank you.