4 * Copyright 2004 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 Watchdog interface
17 *#* Revision 1.7 2005/11/27 03:58:40 bernie
18 *#* Add POSIX timer emulator.
20 *#* Revision 1.6 2005/11/27 03:03:08 bernie
21 *#* Add Qt support hack.
23 *#* Revision 1.5 2005/11/04 16:20:02 bernie
24 *#* Fix reference to README.devlib in header.
26 *#* Revision 1.4 2005/04/12 01:37:17 bernie
27 *#* Prevent warning when watchdog is disabled.
29 *#* Revision 1.3 2005/04/11 19:10:28 bernie
30 *#* Include top-level headers from cfg/ subdir.
32 *#* Revision 1.2 2004/11/16 21:02:07 bernie
33 *#* Make driver optional; mark AVR specific parts as such.
35 *#* Revision 1.1 2004/10/26 08:34:47 bernie
36 *#* New DevLib module.
42 #include <appconfig.h>
43 #include <cfg/compiler.h> // INLINE
45 /* Configury sanity check */
46 #if !defined(CONFIG_WATCHDOG) || (CONFIG_WATCHDOG != 0 && CONFIG_WATCHDOG != 1)
47 #error CONFIG_WATCHDOG must be defined to either 0 or 1
55 #include <qapplication.h>
57 #include <sys/select.h>
60 #include <cfg/macros.h> // BV()
64 #endif /* CONFIG_WATCHDOG */
67 * Reset the watchdog timer.
69 INLINE void wdt_reset(void)
73 // Let Qt handle events
75 qApp->processEvents();
77 static struct timeval tv = { 0, 0 };
78 select(0, NULL, NULL, NULL, &tv);
80 __asm__ __volatile__ ("wdr");
84 #endif /* CONFIG_WATCHDOG */
88 * Set watchdog timer timeout.
90 * \param timeout 0: 16.3ms, 7: 2.1s
92 INLINE void wdt_init(uint8_t timeout)
96 // Create a dummy QApplication object
100 new QApplication(argc, (char **)NULL);
104 (void)timeout; // NOP
106 WDTCR |= BV(WDCE) | BV(WDE);
113 #endif /* CONFIG_WATCHDOG */
116 INLINE void wdt_start(void)
128 #endif /* CONFIG_WATCHDOG */
131 INLINE void wdt_stop(void)
139 WDTCR |= BV(WDCE) | BV(WDE);
144 #endif /* CONFIG_WATCHDOG */
147 #endif /* DRV_WDT_H */