X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Fbuzzer.h;h=489043b1f201e41262e39f3a0af8cc55949818af;hb=77958b8e9d27594aa22e76132b4bbb8d0335bfc2;hp=f82f555476fd6134b0176636ee92df3cf792a61e;hpb=4cc44c9888a0336b9d01121ec0b7ad95f4a76195;p=bertos.git diff --git a/bertos/drv/buzzer.h b/bertos/drv/buzzer.h index f82f5554..489043b1 100644 --- a/bertos/drv/buzzer.h +++ b/bertos/drv/buzzer.h @@ -35,7 +35,11 @@ * * \author Bernie 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 +47,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 */