Skip to content

Commit 8720384

Browse files
committed
Added missing #ifdef in WInterrupts.c... (oops)
See #2408
1 parent 53db220 commit 8720384

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: hardware/arduino/avr/cores/arduino/WInterrupts.c

+2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ static volatile voidFuncPtr intFunc[EXTERNAL_NUM_INTERRUPTS] = {
6161
#if EXTERNAL_NUM_INTERRUPTS > 1
6262
nothing,
6363
#endif
64+
#if EXTERNAL_NUM_INTERRUPTS > 0
6465
nothing
66+
#endif
6567
};
6668
// volatile static voidFuncPtr twiIntFunc;
6769

0 commit comments

Comments
 (0)