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-24 23:11:38 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2014-11-24 23:11:38 +0300
commitc2f9d3159ae858e6ca2af118cb3666f9a05d560f (patch)
tree63c7a89884a589763b86ba34d477fbfc3ff87c97 /wiring.cpp
parentd51d5c7ce1ffeba8739cd0faaaaf5e8379a9176d (diff)
Add configuration option for allowing/disallowing interrupts. Disable by default for AVR, block out AVR implementation of wiring functions.
Diffstat (limited to 'wiring.cpp')
-rw-r--r--wiring.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/wiring.cpp b/wiring.cpp
index a3ee6d15..62317b2a 100644
--- a/wiring.cpp
+++ b/wiring.cpp
@@ -1,6 +1,7 @@
#define FASTLED_INTERNAL
#include "FastLED.h"
+#if 0
#if defined(FASTLED_AVR) && !defined(TEENSYDUINO) && !defined(LIB8_ATTINY)
extern "C" {
@@ -230,3 +231,6 @@ void init()
}
};
#endif
+
+#endif
+