Rename CLOCK_FREQ macro to CPU_FREQ: now clock frequency has to be set in the makefile.
[bertos.git] / bertos / cfg / cfg_stepper.h
index b884bfc333d0e3cf9bc576fd420f982561142e5e..0893d7196cc483da83d2e6d6760c406f9302b7b6 100644 (file)
  * the GNU General Public License.
  *
  * Copyright 2008 Develer S.r.l. (http://www.develer.com/)
- * All Rights Reserved.
+ *
  * -->
  *
  * \brief Configuration file for stepper motor module.
  *
  * \version $Id$
- *
  * \author Daniele Basile <asterix@develer.com>
  */
 
 #ifndef CFG_STEPPER_H
 #define CFG_STEPPER_H
 
-/// Max number of the stepper motor.
-#define CONFIG_NUM_STEPPER_MOTORS    1
+/**
+ * Module logging level.
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_level"
+ */
+#define STEPPER_LOG_LEVEL           LOG_LVL_INFO
 
-/// Max number of the timer usable on target to drive stepper motor.
-#define CONFIG_TC_STEPPER_MAX_NUM 6
+/**
+ * Module logging format.
+ * $WIZ$ type = "enum"
+ * $WIZ$ value_list = "log_format"
+ */
+#define STEPPER_LOG_FORMAT          LOG_FMT_TERSE
 
-#endif /* CFG_STEPPER_H */
+/**
+ * Max number of the stepper motor.
+ * $WIZ$ type = "int"
+ * $WIZ$ min = "0"
+ */
+#define CONFIG_NUM_STEPPER_MOTORS    6
+
+/**
+ * Max number of the timer usable on target to drive stepper motor.
+ * $WIZ$ type = "int"
+ * $WIZ$ min = "0"
+ */
+#define CONFIG_TC_STEPPER_MAX_NUM    6
 
+#endif /* CFG_STEPPER_H */