* \author Bernie Innocenti <bernie@codewiz.org>
*
* \brief Buzzer driver
+ *
+ * $WIZARD = {
+ * "name" : "buzzer"
+ * "depends" : [],
+ * "configuration" : ""
+ * }
*/
#ifndef DRV_BUZZER_H
#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 */
*
* \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
*
* -->
*
- * \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