ButterflyMP3

delay.h

Go to the documentation of this file.
00001 
00026 #ifndef DELAY_H
00027 #define DELAY_H
00028 
00029 /* constants/macros */
00030 
00031 // F_CPU now defined in the makefile
00032 //#define F_CPU         11059200                        /* Processor Speed */
00033 //#define F_CPU         8000000                         /* Processor Speed */
00034 #define CYCLES_PER_US   ((F_CPU+500000)/1000000)        /* cpu cycles per microsecond */
00035 
00036 /* prototypes */
00037 void Delay(uint16 ms);
00038 #endif
 All Files Functions Variables Typedefs Enumerations Enumerator Defines