TIMER2 uses TIMER2 interrupt vector!

This commit is contained in:
dak664 2010-06-22 16:17:24 +00:00
parent 365db27f92
commit e45b1c042b
1 changed files with 2 additions and 2 deletions

View File

@ -43,6 +43,7 @@
can be used to clock the 8 bit timer2.
*/
#if AVR_CONF_USE32KCRYSTAL
#define AVR_OUTPUT_COMPARE_INT TIMER2_COMPA_vect
#define OCRSetup() \
/* Clock from crystal on TOSC0-1 */ \
ASSR = _BV(AS2); \
@ -75,6 +76,7 @@
*/ \
TIMSK2 = _BV (OCIE2A);
#else
#define AVR_OUTPUT_COMPARE_INT TIMER0_COMPA_vect
#define OCRSetup() \
/* Select internal clock */ \
ASSR = 0x00; \
@ -108,8 +110,6 @@
TIMSK0 = _BV (OCIE0A);
#endif /* AVR_CONF_USE32KCRYSTAL */
#define AVR_OUTPUT_COMPARE_INT TIMER0_COMPA_vect
#else
#error "Setup CPU in clock-avr.h"
#endif