This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Coding short delays

I would like to be able to write code that implements short delays (a few microseconds) but where the code generated automatically adapts to the speed of the processor. i.e. as the processor speed is changed, the delay remains constant.

I don't suppose there is a predefined macro constant available (that Keil hasn't told us about) that makes the cycle time available to the source code?

I guess this is quite a common problem.

uVision seems to know all about time, so would it be difficult for a predefined constant to be provided?

Parents
  • Now the hard part ... how do you generate a macro that calculates DelayTimeInCycles from an argument specified in microseconds, handles the odd count, and produces a variable number of _nop_() statements to deal with delays shorter than 4 cycles.

    You ask ME. That's how!

    The following macro

    #define NOPS(x)		\ 
    	(((x) & 1) ? _nop_() : 0), \ 
    	(((x) & 2) ? _nop_(),_nop_() : 0), \ 
    	(((x) & 4) ? _nop_(),_nop_(),_nop_(),_nop_() : 0), \ 
    	(((x) & 8) ? _nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_() : 0)
    

    inserts the number of NOPs specified as the argument. The valid range of values is 0-15. However, I'm sure you can easily modify this baby.

    Jon

Reply
  • Now the hard part ... how do you generate a macro that calculates DelayTimeInCycles from an argument specified in microseconds, handles the odd count, and produces a variable number of _nop_() statements to deal with delays shorter than 4 cycles.

    You ask ME. That's how!

    The following macro

    #define NOPS(x)		\ 
    	(((x) & 1) ? _nop_() : 0), \ 
    	(((x) & 2) ? _nop_(),_nop_() : 0), \ 
    	(((x) & 4) ? _nop_(),_nop_(),_nop_(),_nop_() : 0), \ 
    	(((x) & 8) ? _nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_(),_nop_() : 0)
    

    inserts the number of NOPs specified as the argument. The valid range of values is 0-15. However, I'm sure you can easily modify this baby.

    Jon

Children