Aggiornato il comment block dei log RCS
[bertos.git] / drv / buzzer.h
1 /*!
2  * \file
3  * <!--
4  * Copyright 2003 Develer S.r.l. (http://www.develer.com/)
5  * Copyright 1999,2003 Bernardo Innocenti <bernie@develer.com>
6  * This file is part of DevLib - See devlib/README for information.
7  * -->
8  *
9  * \version $Id$
10  *
11  * \author Bernardo Innocenti <bernie@develer.com>
12  *
13  * \brief Buzzer driver
14  */
15
16 /*#*
17  *#* $Log$
18  *#* Revision 1.5  2004/08/25 14:12:08  rasky
19  *#* Aggiornato il comment block dei log RCS
20  *#*
21  *#* Revision 1.4  2004/08/24 16:53:43  bernie
22  *#* Add missing headers.
23  *#*
24  *#* Revision 1.3  2004/06/03 11:27:09  bernie
25  *#* Add dual-license information.
26  *#*
27  *#* Revision 1.2  2004/05/23 18:21:53  bernie
28  *#* Trim CVS logs and cleanup header info.
29  *#*
30  *#*/
31 #ifndef DRV_BUZZER_H
32 #define DRV_BUZZER_H
33
34 #include <compiler.h>
35
36 extern void buz_init(void);
37 extern void buz_beep(time_t time);
38 extern void buz_repeat_start(time_t duration, time_t interval);
39 extern void buz_repeat_stop(void);
40
41 #endif /* DRV_BUZZER_H */