Add wizard info for timer.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 5 Feb 2009 11:48:07 +0000 (11:48 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 5 Feb 2009 11:48:07 +0000 (11:48 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2266 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_timer.h
bertos/drv/timer.h

index 9d8357ef500a9badac7b95ef9c4de40da7f48fac..7ed1955809a2805c748197a2e788b5f73bd2e5a6 100644 (file)
 #ifndef CFG_TIMER_H
 #define CFG_TIMER_H
 
-/// Hardware timer selection for drv/timer.c
+/**
+ *
+ * $WIZARD_LIST = { "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
+/// Enable asynchronous timers. $WIZARD = { "type" : "boolean" }
 #define CONFIG_TIMER_EVENTS  1
 
-/// Support hi-res timer_usleep()
+/// Support hi-res timer_usleep(). $WIZARD = { "type" : "boolean" }
 #define CONFIG_TIMER_UDELAY  1
 
 #endif /* CFG_TIMER_H */
index 9e3e2b30f282d47944d0a24ed524d81e5e177973..5696823a3e156ce7ef1ceebff01bbecbf2c0b44e 100644 (file)
  *
  * \version $Id$
  * \author Bernie Innocenti <bernie@codewiz.org>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "timer",
+ * "depends" : [],
+ * "configuration" : "bertos/cfg/cfg_timer.h"
+ * }
  */
 
 #ifndef DRV_TIMER_H