Fix, update and add wizart info.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 14:39:40 +0000 (14:39 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 6 Feb 2009 14:39:40 +0000 (14:39 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2303 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/drv/buzzer.h
bertos/drv/ntc.h
bertos/drv/pcf8574.h

index f82f555476fd6134b0176636ee92df3cf792a61e..6f9815ce16e4a70ae250b83c6cc17b89540ef796 100644 (file)
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
  * \brief Buzzer driver
+ *
+ * $WIZARD = {
+ * "name" : "buzzer"
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 
 #ifndef DRV_BUZZER_H
@@ -43,9 +49,9 @@
 
 #include <cfg/compiler.h>
 
-extern void buz_init(void);
-extern void buz_beep(mtime_t time);
-extern void buz_repeat_start(mtime_t duration, mtime_t interval);
-extern void buz_repeat_stop(void);
+void buz_init(void);
+void buz_beep(mtime_t time);
+void buz_repeat_start(mtime_t duration, mtime_t interval);
+void buz_repeat_stop(void);
 
 #endif /* DRV_BUZZER_H */
index 6aa72376adf62d10aa2783f8cc75d21cb4cd1cbd..ad370e91737d5a0929da6ab3ba96fd8739d01353 100644 (file)
  *
  * \author Giovanni Bajo <rasky@develer.com>
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "ntc",
+ * "depends" : ["adc"],
+ * "configuration" : ""
+ * }
  */
 
 #ifndef DRV_NTC_H
 #define DRV_NTC_H
 
 #include "hw/ntc_map.h"
-#include <cfg/debug.h>
+
 #include <cfg/compiler.h>
 
 #define NTC_OPEN_CIRCUIT  -32768
index bde525c55a2796ae7b554d9aedcbca6a76d9a8f9..687dfa23eebb336b1bf22104b7633057644beda6 100644 (file)
  *
  * -->
  *
- * \brief PCF8574 i2c port expander driver (interface).
+ * \brief PCF8574 i2c port expander driver.
  *
  * \version $Id: ft245rl.c 22301 2008-09-09 16:53:17Z batt $
  * \author Francesco Sacchi <batt@develer.com>
+ *
+ * $WIZARD_MODULE = {
+ * "name" : "pcf8574",
+ * "depends" : [],
+ * "configuration" : ""
+ * }
  */
 
 #ifndef DRV_PCF8574_H