Add wizard info.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 5 Feb 2009 18:22:12 +0000 (18:22 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 5 Feb 2009 18:22:12 +0000 (18:22 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2279 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cfg/cfg_dc_motor.h
bertos/drv/dc_motor.h

index 3475059db24c0db16437ec6297b92b25a75a99ba..b04359e93a87cc2f77064c43eb76c8fb7502aff2 100644 (file)
 #ifndef CFG_DC_MOTOR_H
 #define CFG_DC_MOTOR_H
 
-//DC motor configuration
+/**
+ * Number of the DC motors to mange.
+ *
+ * $WIZARD = { "type" : "enum" }
+ */
 #define CONFIG_NUM_DC_MOTOR       1
 
 #endif /* CFG_DC_MOTOR_H */
index 1a50d48aa8819b98e8b2f8e71c58589814793809..71525f24138ea61e2af4e7290891a606880a1ea6 100644 (file)
  * \version $Id$
  *
  * \author Daniele Basile <asterix@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "dc_motor",
+ * "depends" : [pwm, pid_control],
+ * "configuration" : "bertos/cfg/cfg_dc_motor.h"
+ * }
  */
 
 #ifndef DRV_DC_MOTOR_H