Change the comment style for the modules and the list, and use the newParser to parse...
[bertos.git] / bertos / cfg / cfg_timer.h
index 9333e6e3a431b782418a7fa4360d2f415d76995b..5262f80d3cd61292a45484eb65a9b7f2d5f92410 100644 (file)
  * \version $Id$
  *
  * \author Daniele Basile <asterix@develer.com>
+ * $WIZ$
  */
 
 #ifndef CFG_TIMER_H
 #define CFG_TIMER_H
 
-/// Hardware timer selection for drv/timer.c
+/**
+ *
+ * $WIZ$ timer_select = "TIMER_DEFAULT"
+ */
+
+/// Hardware timer selection for drv/timer.c. $WIZARD = { "type" : "enum", "value_list" : "timer_select" }
 #define CONFIG_TIMER TIMER_DEFAULT
 
-/// Debug timer interrupt using a strobe pin.
+/// Debug timer interrupt using a strobe pin. $WIZARD = { "type" : "boolean" }
 #define CONFIG_TIMER_STROBE  0
 
+/// Enable asynchronous timers. $WIZARD = { "type" : "boolean" }
+#define CONFIG_TIMER_EVENTS  1
+
+/// Support hi-res timer_usleep(). $WIZARD = { "type" : "boolean" }
+#define CONFIG_TIMER_UDELAY  1
+
 #endif /* CFG_TIMER_H */