Sistema l'errore da me commesso in fase di conversione...
[bertos.git] / drv / buzzer.c
old mode 100755 (executable)
new mode 100644 (file)
index fd478a6..940bad6
@@ -1,4 +1,4 @@
-/*!
+/**
  * \file
  * <!--
  * Copyright 2003, 2004, 2005 Develer S.r.l. (http://www.develer.com/)
 
 /*#*
  *#* $Log$
+ *#* Revision 1.19  2006/07/19 12:56:25  bernie
+ *#* Convert to new Doxygen style.
+ *#*
+ *#* Revision 1.18  2006/02/17 21:15:25  bernie
+ *#* Add MOD_CHECK() checks.
+ *#*
+ *#* 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.
  *#*
  *#* 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>
 
 #include <cfg/debug.h>
+#include <cfg/module.h>
 
 
 /* Local vars */
@@ -61,7 +69,7 @@ static mtime_t buz_repeat_interval;
 static mtime_t buz_repeat_duration;
 
 
-/*!
+/**
  * Turn off buzzer, called by software timer
  */
 static void buz_softint(void)
@@ -90,7 +98,7 @@ static void buz_softint(void)
 }
 
 
-/*!
+/**
  * Beep for the specified ms time
  */
 void buz_beep(mtime_t time)
@@ -114,7 +122,7 @@ void buz_beep(mtime_t time)
 }
 
 
-/*!
+/**
  * Start buzzer repetition
  */
 void buz_repeat_start(mtime_t duration, mtime_t interval)
@@ -125,7 +133,7 @@ void buz_repeat_start(mtime_t duration, mtime_t interval)
 }
 
 
-/*!
+/**
  * Stop buzzer repetition
  */
 void buz_repeat_stop(void)
@@ -146,19 +154,19 @@ void buz_repeat_stop(void)
        IRQ_RESTORE(flags);
 }
 
+MOD_DEFINE(buzzer)
 
-/*!
+/**
  * Initialize buzzer.
  */
 void buz_init(void)
 {
-       cpuflags_t flags;
-       IRQ_SAVE_DISABLE(flags);
+       MOD_CHECK(timer);
 
        BUZZER_HW_INIT;
 
-       IRQ_RESTORE(flags);
-
        /* Init software interrupt. */
        timer_set_event_softint(&buz_timer, (Hook)buz_softint, 0);
+
+       MOD_INIT(buzzer);
 }