00001 00002 #ifndef _TIME_H 00003 #define _TIME_H 00004 00005 #define USE_CLOCK 1 00006 00007 #if USE_CLOCK 00008 00009 #define SYSCLK 16000000 00010 00011 void Start_Clock (void); 00012 #else 00013 #define Start_Clock() 00014 #endif 00015 00016 #endif // _TIME_H