/*!
* \file
* <!--
- * Copyright 2003,2004 Develer S.r.l. (http://www.develer.com/)
- * Copyright 1999,2003 Bernardo Innocenti <bernie@develer.com>
+ * Copyright 2003, 2004 Develer S.r.l. (http://www.develer.com/)
+ * Copyright 1999, 2003 Bernardo Innocenti <bernie@develer.com>
* This file is part of DevLib - See devlib/README for information.
* -->
*
/*#*
*#* $Log$
+ *#* 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
*#*
#include "buzzer.h"
#include <drv/timer.h>
-#include <drv/kdebug.h>
#include <kern/event.h>
+#include <debug.h>
#include <hw.h>
#include <arch_config.h>
#elif defined(__AVR__)
- #define IS_BUZZER_ON (PORTG & BV(PORTG0))
+ #define IS_BUZZER_ON (PORTG & BV(PG0))
/*!
* Buzzer manipulation macros
do { \
cpuflags_t _flags; \
DISABLE_IRQSAVE(_flags); \
- PORTG |= BV(PORTG0); \
+ PORTG |= BV(PG0); \
ENABLE_IRQRESTORE(_flags); \
} while (0)
do { \
cpuflags_t _flags; \
DISABLE_IRQSAVE(_flags); \
- PORTG &= ~BV(PORTG0); \
+ PORTG &= ~BV(PG0); \
ENABLE_IRQRESTORE(_flags); \
} while (0)
do { \
cpuflags_t _flags; \
DISABLE_IRQSAVE(_flags); \
- PORTG &= ~BV(PORTG0); \
- DDRG |= BV(PORTG0); \
+ PORTG &= ~BV(PG0); \
+ DDRG |= BV(PG0); \
ENABLE_IRQRESTORE(_flags); \
} while (0)