We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd823bf commit 6554ae6Copy full SHA for 6554ae6
hardware/arduino/cores/arduino/wiring.c
@@ -41,7 +41,11 @@ volatile unsigned long timer0_overflow_count = 0;
41
volatile unsigned long timer0_millis = 0;
42
static unsigned char timer0_fract = 0;
43
44
+#if defined(__AVR_ATtiny24__) || defined(__AVR_ATtiny44__) || defined(__AVR_ATtiny84__)
45
+SIGNAL(TIM0_OVF_vect)
46
+#else
47
SIGNAL(TIMER0_OVF_vect)
48
+#endif
49
{
50
// copy these to local variables so they can be stored in registers
51
// (volatile variables must be read from memory on every access)
0 commit comments