From 82f9359027299e91c43600a23f99a7433e680a37 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 1 Sep 2015 10:11:43 +0200 Subject: [PATCH] Added missing #ifdef in WInterrupts.c... (oops) See #2408 --- cores/arduino/WInterrupts.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cores/arduino/WInterrupts.c b/cores/arduino/WInterrupts.c index f974ce6..83b762f 100644 --- a/cores/arduino/WInterrupts.c +++ b/cores/arduino/WInterrupts.c @@ -61,7 +61,9 @@ static volatile voidFuncPtr intFunc[EXTERNAL_NUM_INTERRUPTS] = { #if EXTERNAL_NUM_INTERRUPTS > 1 nothing, #endif +#if EXTERNAL_NUM_INTERRUPTS > 0 nothing +#endif }; // volatile static voidFuncPtr twiIntFunc;