Add preliminary FreeRTOS support; Enforce CONFIG_* definitions.
[bertos.git] / drv / buzzer.c
index eaefe075dce76abf4f0fd757ee0635affc0cc90e..4383ed79e4658415cbe7474286828f57d5e05919 100755 (executable)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.17  2006/02/10 12:30:18  bernie
+ *#* Push interrupt protection inside hw module.
+ *#*
+ *#* Revision 1.16  2005/11/04 16:19:33  bernie
+ *#* buz_init(): Restore IRQ protection as in project_bko.
+ *#*
  *#* Revision 1.15  2005/06/27 21:25:50  bernie
  *#* Modularize hardware access; Port to new timer interface.
  *#*
  *#* Use new AVR port pin names.
  *#*/
 
+#include "buzzer.h"
 
 #include <hw_buzzer.h>
-#include <drv/buzzer.h>
-
 #include <drv/timer.h>
-#include <drv/sipo.h>
 
 #include <mware/event.h>
 
@@ -145,13 +149,12 @@ void buz_repeat_stop(void)
 
 
 /*!
- * Initialize buzzer
+ * Initialize buzzer.
  */
 void buz_init(void)
 {
-       BUZZER_INIT;
-
        BUZZER_HW_INIT;
-       /* Inizializza software interrupt */
+
+       /* Init software interrupt. */
        timer_set_event_softint(&buz_timer, (Hook)buz_softint, 0);
 }