X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fbuzzer.h;h=9023152c371abad916cfa05eb522320a7299697a;hb=41718ab2098bd5640da265c34f1ecb79a4123d39;hp=16f645180d071941676c9e368c7c2b0067291a7c;hpb=f66431cfee885cc3a2d87a4286e50850f46beac8;p=bertos.git diff --git a/bertos/drv/buzzer.h b/bertos/drv/buzzer.h index 16f64518..9023152c 100644 --- a/bertos/drv/buzzer.h +++ b/bertos/drv/buzzer.h @@ -27,15 +27,17 @@ * the GNU General Public License. * * Copyright 2003,2005 Develer S.r.l. (http://www.develer.com/) - * Copyright 1999,2003 Bernardo Innocenti + * Copyright 1999,2003 Bernie Innocenti * * --> * - * \version $Id$ + * \author Bernie Innocenti * - * \author Bernardo Innocenti + * \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 -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 */