Match only the section name that have the same lenght.
[bertos.git] / bertos / drv / wdt.h
index 6e2cde30f1c574261c33edfb62ffc137991a596a..89752bf7ac6a04625d390d64cd9cc3987ab1058b 100644 (file)
  *
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
- * \brief Watchdog interface
+ * \brief Watchdog module, supplies a simple API to manage wdt on supported target.
+ *
+ * $WIZ$ module_name = "wdt"
+ * $WIZ$ module_configuration = "bertos/cfg/cfg_wdt.h"
+ * $WIZ$ module_supports = "avr"
  */
 
 #ifndef DRV_WDT_H
 #define DRV_WDT_H
 
 #include "cfg/cfg_wdt.h"
-#include "cfg/cfg_arch.h"
 
 #include <cfg/compiler.h> // INLINE
 
        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
@@ -89,8 +88,8 @@
         * Start the watchdog timer that fire at the select
         * timeout.
         *
-        * \param timeout, this value is target dependant.
-        * See the target documentation for more detail.
+        * \param timeout this value is target dependant.
+        * See the target documentation for more details.
         */
        INLINE void wdt_start(uint32_t timeout)
        {