X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fbuzzer.c;h=63cbc4a8c7c01694c0b5a0bee5b16005f06bcd39;hb=2535cb94ec2183791128f8bbd109ca69a960cf78;hp=fd478a6b34db694e1120316573b0a0c2cc654b61;hpb=9a7b54ad73f63bd2adae3ddb093676be89e31139;p=bertos.git diff --git a/drv/buzzer.c b/drv/buzzer.c old mode 100755 new mode 100644 index fd478a6b..63cbc4a8 --- a/drv/buzzer.c +++ b/drv/buzzer.c @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \version $Id$ @@ -17,6 +42,15 @@ /*#* *#* $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. *#* @@ -42,16 +76,15 @@ *#* Use new AVR port pin names. *#*/ +#include "buzzer.h" #include -#include - #include -#include #include #include +#include /* Local vars */ @@ -61,7 +94,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 +123,7 @@ static void buz_softint(void) } -/*! +/** * Beep for the specified ms time */ void buz_beep(mtime_t time) @@ -114,7 +147,7 @@ void buz_beep(mtime_t time) } -/*! +/** * Start buzzer repetition */ void buz_repeat_start(mtime_t duration, mtime_t interval) @@ -125,7 +158,7 @@ void buz_repeat_start(mtime_t duration, mtime_t interval) } -/*! +/** * Stop buzzer repetition */ void buz_repeat_stop(void) @@ -146,19 +179,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); }