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 (implementation).
17 *#* Revision 1.6 2006/09/13 18:25:22 bernie
20 *#* Revision 1.5 2006/07/19 12:56:26 bernie
21 *#* Convert to new Doxygen style.
23 *#* Revision 1.4 2006/05/28 12:17:57 bernie
24 *#* Drop almost all the Qt3 cruft.
26 *#* Revision 1.3 2006/02/21 21:28:02 bernie
27 *#* New time handling based on TIMER_TICKS_PER_SEC to support slow timers with ticks longer than 1ms.
29 *#* Revision 1.2 2006/02/20 02:01:35 bernie
32 *#* Revision 1.1 2005/11/27 03:06:36 bernie
33 *#* Qt timer emulation.
37 #include <cfg/compiler.h> /* hptime.t */
40 #include <QtCore/QDateTime>
41 #include <QtCore/QTimer>
44 // The user interrupt server routine
49 * Singleton class for Qt-based hardware timer emulation.
51 class EmulTimer : public QObject
56 /// System timer (counts ms since application startup)
59 /// The 1ms "hardware" tick counter.
63 * We deliberately don't use RAII because the real hardware
64 * we're simulating needs to be initialized manually.
68 /// Private ctor (singleton)
69 EmulTimer() : initialized(false) { }
72 /// Return singleton instance
73 static EmulTimer &instance()
79 /// Start timer emulator.
82 // Timer initialized twice?
85 // Record initial time
88 // Activate timer interrupt
89 timer.connect(&timer, SIGNAL(timeout()), this, SLOT(timerInterrupt()));
90 timer.start(1000 / TIMER_TICKS_PER_SEC);
95 /// Return current time in high-precision format.
99 return system_time.elapsed();
103 void timerInterrupt(void)
105 // Just call user interrupt server, timer restarts automatically.
111 #include "timer_qt_moc.cpp"
114 /// HW dependent timer initialization.
115 static void timer_hw_init(void)
117 // Kick EmulTimer initialization
118 EmulTimer::instance().init();
121 INLINE hptime_t timer_hw_hpread(void)
123 return EmulTimer::instance().hpread();