X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fbuzzer.c;h=63cbc4a8c7c01694c0b5a0bee5b16005f06bcd39;hb=99fafc49f3b2d50abb2d7b8b4cbbd3be8e107bef;hp=f5d047b6e3947804efddcef8c51f7754e2f0dc1c;hpb=8e431405692569d59b74509919eaec2f23df407f;p=bertos.git diff --git a/drv/buzzer.c b/drv/buzzer.c old mode 100755 new mode 100644 index f5d047b6..63cbc4a8 --- a/drv/buzzer.c +++ b/drv/buzzer.c @@ -1,9 +1,34 @@ -/*! +/** * \file * * * \version $Id$ @@ -17,6 +42,9 @@ /*#* *#* $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. *#* @@ -66,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) @@ -95,7 +123,7 @@ static void buz_softint(void) } -/*! +/** * Beep for the specified ms time */ void buz_beep(mtime_t time) @@ -119,7 +147,7 @@ void buz_beep(mtime_t time) } -/*! +/** * Start buzzer repetition */ void buz_repeat_start(mtime_t duration, mtime_t interval) @@ -130,7 +158,7 @@ void buz_repeat_start(mtime_t duration, mtime_t interval) } -/*! +/** * Stop buzzer repetition */ void buz_repeat_stop(void) @@ -153,7 +181,7 @@ void buz_repeat_stop(void) MOD_DEFINE(buzzer) -/*! +/** * Initialize buzzer. */ void buz_init(void)