buzzer.h

Go to the documentation of this file.
00001 
00041 /*#*
00042  *#* $Log$
00043  *#* Revision 1.10  2006/07/19 12:56:25  bernie
00044  *#* Convert to new Doxygen style.
00045  *#*
00046  *#* Revision 1.9  2005/11/27 23:32:15  bernie
00047  *#* Update copyright information.
00048  *#*
00049  *#* Revision 1.8  2005/11/04 16:20:02  bernie
00050  *#* Fix reference to README.devlib in header.
00051  *#*
00052  *#* Revision 1.7  2005/04/11 19:10:27  bernie
00053  *#* Include top-level headers from cfg/ subdir.
00054  *#*
00055  *#* Revision 1.6  2004/12/08 09:11:53  bernie
00056  *#* Rename time_t to mtime_t.
00057  *#*
00058  *#* Revision 1.5  2004/08/25 14:12:08  rasky
00059  *#* Aggiornato il comment block dei log RCS
00060  *#*
00061  *#* Revision 1.4  2004/08/24 16:53:43  bernie
00062  *#* Add missing headers.
00063  *#*
00064  *#* Revision 1.3  2004/06/03 11:27:09  bernie
00065  *#* Add dual-license information.
00066  *#*
00067  *#* Revision 1.2  2004/05/23 18:21:53  bernie
00068  *#* Trim CVS logs and cleanup header info.
00069  *#*
00070  *#*/
00071 #ifndef DRV_BUZZER_H
00072 #define DRV_BUZZER_H
00073 
00074 #include <cfg/compiler.h>
00075 
00076 extern void buz_init(void);
00077 extern void buz_beep(mtime_t time);
00078 extern void buz_repeat_start(mtime_t duration, mtime_t interval);
00079 extern void buz_repeat_stop(void);
00080 
00081 #endif /* DRV_BUZZER_H */