Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2014-11-08 04:15:42 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2014-11-08 04:15:42 +0300
commit10bb0952047a5bc6a57dad19d3455351fc33e27b (patch)
tree2ef9b488ba6b6208c5fcaa0aaedc44477cb1a22f /led_sysdefs.h
parent69a3fa68519b6b451fd63bc5064d16112bbb3b80 (diff)
parentc996c8a56502651bbf509cf8f787e1a8843d0e12 (diff)
Merge branch 'master' into FastLED3.1
Diffstat (limited to 'led_sysdefs.h')
-rw-r--r--led_sysdefs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/led_sysdefs.h b/led_sysdefs.h
index 3ec49ad6..a6711a9d 100644
--- a/led_sysdefs.h
+++ b/led_sysdefs.h
@@ -66,6 +66,10 @@ typedef volatile uint8_t RwReg; /**< Read-Write 8-bit register (volatile u
#error Arduion versions 1.5.7 and later not yet supported by FastLED for AVR
#endif
+#if defined(ARDUINO) && defined (FASTLED_AVR) && (__GNUC__ == 4) && (__GNUC_MINOR__ > 7)
+#error gcc versions 4.8 and above are not yet supported by FastLED for AVR
+#endif
+
// Arduino.h needed for convinience functions digitalPinToPort/BitMask/portOutputRegister and the pinMode methods.
#include<Arduino.h>