/** * \file * * * \author Bernie Innocenti * * \brief Buzzer driver. * * $WIZ$ module_name = "buzzer" * $WIZ$ module_depends = "timer" * $WIZ$ module_hw = "bertos/hw/hw_buzzer.h" */ #ifndef DRV_BUZZER_H #define DRV_BUZZER_H #include 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 */