4 * Copyright 2005 Develer S.r.l. (http://www.develer.com/)
5 * This file is part of DevLib - See README.devlib for information.
10 * \author Bernardo Innocenti <bernie@develer.com>
12 * \brief Low-level timer module for Qt emulator (interface).
17 *#* Revision 1.3 2006/02/21 21:28:02 bernie
18 *#* New time handling based on TIMER_TICKS_PER_SEC to support slow timers with ticks longer than 1ms.
20 *#* Revision 1.2 2005/11/27 03:57:00 bernie
21 *#* Documentation fixes.
23 *#* Revision 1.1 2005/11/27 03:06:36 bernie
24 *#* Qt timer emulation.
27 #ifndef DRV_TIMER_QT_H
28 #define DRV_TIMER_QT_H
30 // HW dependent timer initialization
32 #define DEFINE_TIMER_ISR void timer_isr(void)
33 #define TIMER_TICKS_PER_SEC 250
34 #define TIMER_HW_CNT (1<<31) /* We assume 32bit integers here */
36 /// Type of time expressed in ticks of the hardware high-precision timer.
37 typedef unsigned int hptime_t;
39 /// Frequency of the hardware high-precision timer.
40 #define TIMER_HW_HPTICKS_PER_SEC 1000
43 #define timer_hw_irq() do {} while (0)
46 #endif /* DRV_TIMER_QT_H */