X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fwdt.h;h=faba48d9c6a36c16f832b351ff3aa4e66452483f;hb=2053cc3e6aa26c20a8511ad7148dd704b8e0891e;hp=e5a90e76efd04fa5235788e9a3c9d501fb987eb0;hpb=013836bbcaff6b08025c863390ba8a913b66f1b8;p=bertos.git diff --git a/bertos/drv/wdt.h b/bertos/drv/wdt.h index e5a90e76..faba48d9 100644 --- a/bertos/drv/wdt.h +++ b/bertos/drv/wdt.h @@ -30,17 +30,14 @@ * * --> * - * \version $Id$ * * \author Bernie Innocenti * * \brief Watchdog module, supplies a simple API to manage wdt on supported target. * - * $WIZARD_MODULE = { - * "name" : "wdt", - * "depends" : [], - * "configuration" : "bertos/cfg/cfg_wdt.h" - * } + * $WIZ$ module_name = "wdt" + * $WIZ$ module_configuration = "bertos/cfg/cfg_wdt.h" + * $WIZ$ module_supports = "avr" */ #ifndef DRV_WDT_H @@ -79,11 +76,7 @@ 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