Update preset.
[bertos.git] / bertos / drv / buzzer.h
index f82f555476fd6134b0176636ee92df3cf792a61e..9023152c371abad916cfa05eb522320a7299697a 100644 (file)
  *
  * -->
  *
- * \version $Id$
- *
  * \author Bernie Innocenti <bernie@codewiz.org>
  *
- * \brief Buzzer driver
+ * \brief Buzzer driver.
+ *
+ * $WIZ$ module_name = "buzzer"
+ * $WIZ$ module_depends = "timer"
+ * $WIZ$ module_hw = "bertos/hw/hw_buzzer.h"
  */
 
 #ifndef DRV_BUZZER_H
@@ -43,9 +45,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 */