Use univoc name for low level init module. Fixed include.
[bertos.git] / bertos / drv / wdt.h
index b6db12475a0861d251bf60c4b662f299653c7ae0..89752bf7ac6a04625d390d64cd9cc3987ab1058b 100644 (file)
@@ -38,6 +38,7 @@
  *
  * $WIZ$ module_name = "wdt"
  * $WIZ$ module_configuration = "bertos/cfg/cfg_wdt.h"
+ * $WIZ$ module_supports = "avr"
  */
 
 #ifndef DRV_WDT_H
        INLINE void wdt_reset(void)
        {
        #if CONFIG_WATCHDOG
-               #if OS_QT
-                       // Let Qt handle events
-                       ASSERT(qApp);
-                       qApp->processEvents();
-               #elif OS_POSIX
+               #if OS_POSIX
                        static struct timeval tv = { 0, 0 };
                        select(0, NULL, NULL, NULL, &tv);
                #endif