X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fbuzzer.h;h=a62b61e4ad51249b819b8dbb16b2d369446b46f2;hb=1fc71821dbce1d85a5d5227bd9e6580b573e8eba;hp=16f645180d071941676c9e368c7c2b0067291a7c;hpb=f66431cfee885cc3a2d87a4286e50850f46beac8;p=bertos.git diff --git a/bertos/drv/buzzer.h b/bertos/drv/buzzer.h index 16f64518..a62b61e4 100644 --- a/bertos/drv/buzzer.h +++ b/bertos/drv/buzzer.h @@ -27,15 +27,18 @@ * 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 Bernardo Innocenti + * \author Bernie Innocenti * - * \brief Buzzer driver + * \brief Buzzer driver. + * + * $WIZ$ module_name = "buzzer" + * $WIZ$ module_hw = "bertos/hw/hw_buzzer.h" */ #ifndef DRV_BUZZER_H @@ -43,9 +46,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 */