X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=drv%2Fbuzzer.c;h=d0c0264f9ab9412ce7d43d85f286f7bf2797bde5;hb=13ec95fc46065b689287f537b61f2e6607be1653;hp=1d2c6e12bb2d07768a89e40849e014054b6399d7;hpb=807d2fde65d730b10f548cd3d77d69238e226133;p=bertos.git diff --git a/drv/buzzer.c b/drv/buzzer.c index 1d2c6e12..d0c0264f 100755 --- a/drv/buzzer.c +++ b/drv/buzzer.c @@ -1,9 +1,9 @@ /*! * \file * * * \version $Id$ @@ -16,6 +16,15 @@ /*#* *#* $Log$ + *#* Revision 1.14 2005/04/11 19:10:27 bernie + *#* Include top-level headers from cfg/ subdir. + *#* + *#* Revision 1.13 2005/02/18 11:20:15 bernie + *#* Use mware/event.h; Update copyright info. + *#* + *#* Revision 1.12 2004/12/13 12:07:06 bernie + *#* DISABLE_IRQSAVE/ENABLE_IRQRESTORE: Convert to IRQ_SAVE_DISABLE/IRQ_RESTORE. + *#* *#* Revision 1.11 2004/12/08 09:11:53 bernie *#* Rename time_t to mtime_t. *#* @@ -24,37 +33,17 @@ *#* *#* Revision 1.9 2004/09/14 21:01:25 bernie *#* Use new AVR port pin names. - *#* - *#* Revision 1.8 2004/08/25 14:12:08 rasky - *#* Aggiornato il comment block dei log RCS - *#* - *#* Revision 1.7 2004/08/24 16:53:43 bernie - *#* Add missing headers. - *#* - *#* Revision 1.6 2004/06/07 18:10:06 aleph - *#* Remove free pool of timers; use user-provided Timer structure instead - *#* - *#* Revision 1.5 2004/06/07 15:54:23 aleph - *#* Update to new event.h naming - *#* - *#* Revision 1.4 2004/06/06 16:09:22 bernie - *#* Reformat (from project_ks). - *#* - *#* Revision 1.3 2004/06/03 11:27:09 bernie - *#* Add dual-license information. - *#* - *#* Revision 1.2 2004/05/23 18:21:53 bernie - *#* Trim CVS logs and cleanup header info. - *#* *#*/ #include "buzzer.h" #include -#include -#include +#include + +#include /* BV() */ +#include #include -#include +#include #if (ARCH & ARCH_EMUL) @@ -76,36 +65,17 @@ #define IS_BUZZER_ON (PORTG & BV(PG0)) /*! - * Buzzer manipulation macros + * \name Buzzer manipulation macros. * * \note Some PORTG functions are being used from * interrupt code, so we must be careful to * avoid race conditions. + * \{ */ - #define BUZZER_ON \ - do { \ - cpuflags_t _flags; \ - DISABLE_IRQSAVE(_flags); \ - PORTG |= BV(PG0); \ - ENABLE_IRQRESTORE(_flags); \ - } while (0) - - #define BUZZER_OFF \ - do { \ - cpuflags_t _flags; \ - DISABLE_IRQSAVE(_flags); \ - PORTG &= ~BV(PG0); \ - ENABLE_IRQRESTORE(_flags); \ - } while (0) - - #define BUZZER_INIT \ - do { \ - cpuflags_t _flags; \ - DISABLE_IRQSAVE(_flags); \ - PORTG &= ~BV(PG0); \ - DDRG |= BV(PG0); \ - ENABLE_IRQRESTORE(_flags); \ - } while (0) + #define BUZZER_ON ATOMIC(PORTG |= BV(PG0)) + #define BUZZER_OFF ATOMIC(PORTG &= ~BV(PG0)) + #define BUZZER_INIT ATOMIC(PORTG &= ~BV(PG0); DDRG |= BV(PG0);) + /*\}*/ #elif defined(__IAR_SYSTEMS_ICC) || defined(__IAR_SYSTEMS_ICC__) /* 80C196 */ @@ -159,9 +129,9 @@ static void buz_softint(void) void buz_beep(mtime_t time) { cpuflags_t flags; + IRQ_SAVE_DISABLE(flags); /* Remove the software interrupt if it was already queued */ - DISABLE_IRQSAVE(flags); if (buz_timer_running) timer_abort(&buz_timer); @@ -173,7 +143,7 @@ void buz_beep(mtime_t time) buz_timer.delay = time; timer_add(&buz_timer); - ENABLE_IRQRESTORE(flags); + IRQ_RESTORE(flags); } @@ -194,7 +164,7 @@ void buz_repeat_start(mtime_t duration, mtime_t interval) void buz_repeat_stop(void) { cpuflags_t flags; - DISABLE_IRQSAVE(flags); + IRQ_SAVE_DISABLE(flags); /* Remove the software interrupt if it was already queued */ if (buz_timer_running) @@ -206,7 +176,7 @@ void buz_repeat_stop(void) buz_repeat_interval = 0; BUZZER_OFF; - ENABLE_IRQRESTORE(flags); + IRQ_RESTORE(flags); }