Update preset.
[bertos.git] / bertos / cfg / cfg_timer.h
index 5262f80d3cd61292a45484eb65a9b7f2d5f92410..b6d43b38b6d3295299aca5e5009f1cbe65f90535 100644 (file)
  *
  * \brief Configuration file for timer module.
  *
- * \version $Id$
  *
  * \author Daniele Basile <asterix@develer.com>
- * $WIZ$
  */
 
 #ifndef CFG_TIMER_H
 #define CFG_TIMER_H
 
 /**
- *
- * $WIZ$ timer_select = "TIMER_DEFAULT"
+ * Hardware timer selection for drv/timer.c.
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "timer_select"
  */
-
-/// 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. $WIZARD = { "type" : "boolean" }
+/**
+ * Debug timer interrupt using a strobe pin.
+ * $WIZ$ type = "boolean"
+ */
 #define CONFIG_TIMER_STROBE  0
 
-/// Enable asynchronous timers. $WIZARD = { "type" : "boolean" }
+/**
+ * Enable asynchronous timers.
+ * $WIZ$ type = "boolean"
+ */
 #define CONFIG_TIMER_EVENTS  1
 
-/// Support hi-res timer_usleep(). $WIZARD = { "type" : "boolean" }
+/**
+ * Support hi-res timer_usleep().
+ * $WIZ$ type = "boolean"
+ */
 #define CONFIG_TIMER_UDELAY  1
 
 #endif /* CFG_TIMER_H */