timer_qt.h
Go to the documentation of this file.00001 00039 #ifndef DRV_TIMER_QT_H 00040 #define DRV_TIMER_QT_H 00041 00042 // HW dependent timer initialization 00043 00044 #define DEFINE_TIMER_ISR void timer_isr(void) 00045 #define TIMER_TICKS_PER_SEC 250 00046 #define TIMER_HW_CNT (1<<31) /* We assume 32bit integers here */ 00047 00049 typedef unsigned int hptime_t; 00050 00052 #define TIMER_HW_HPTICKS_PER_SEC 1000 00053 00055 #define timer_hw_irq() do {} while (0) 00056 00057 #endif /* DRV_TIMER_QT_H */
