buzzer.h
Go to the documentation of this file.00001 00041 #ifndef DRV_BUZZER_H 00042 #define DRV_BUZZER_H 00043 00044 #include <cfg/compiler.h> 00045 00046 extern void buz_init(void); 00047 extern void buz_beep(mtime_t time); 00048 extern void buz_repeat_start(mtime_t duration, mtime_t interval); 00049 extern void buz_repeat_stop(void); 00050 00051 #endif /* DRV_BUZZER_H */
