bertos/hw/hw_buzzer.h
Go to the documentation of this file.00001 00041 /*#* 00042 *#* $Log$ 00043 *#* Revision 1.2 2006/07/19 12:56:27 bernie 00044 *#* Convert to new Doxygen style. 00045 *#* 00046 *#* Revision 1.1 2006/02/10 12:31:03 bernie 00047 *#* Add templates for hw definitions. 00048 *#* 00049 *#*/ 00050 00051 #ifndef HW_BUZZER_H 00052 #define HW_BUZZER_H 00053 00054 #define BUZZER_BIT BV(1) 00055 #define IS_BUZZER_ON 0 00056 #define BUZZER_HW_INIT do { } while (0) 00057 #define BUZZER_ON do { } while (0) 00058 #define BUZZER_OFF do { } while (0) 00059 00060 #endif /* HW_BUZZER_H */
