You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
422 B

/* delay.h - DELAY */
/*
* Delay units are in microseconds.
*/
#define DELAY(n) \
{ \
volatile long N = 2*n; \
\
while(N > 0) { \
N--; \
} \
}
/*
* Delay units are in milli-seconds.
*/
#define MDELAY(n) \
{ \
register long i; \
\
for (i=n;i>0;i--) { \
DELAY(1000); \
} \
}