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-18 10:53:57 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2014-11-18 10:53:57 +0300
commitc7766f85f070f8dfab8727d105c78bb42db77f49 (patch)
tree1dcde4d004e4bb0105e17581d53a1c64b566e524 /fastled_config.h
parent5b8c97da6f5629c5ee2b234744555e1eec4eeb8b (diff)
Re-arranging code layout, pulling off platform specific headers into their own directories.
Diffstat (limited to 'fastled_config.h')
-rw-r--r--fastled_config.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/fastled_config.h b/fastled_config.h
new file mode 100644
index 00000000..3e5a8c4e
--- /dev/null
+++ b/fastled_config.h
@@ -0,0 +1,12 @@
+#ifndef __INC_FASTLED_CONFIG_H
+#define __INC_FASTLED_CONFIG_H
+
+// Use this option only for debugging pin access and forcing software pin access. Note that
+// software pin access only works in Arduino based environments. Forces use of digitalWrite
+// methods for pin access vs. direct hardware port access
+// #define FORCE_SOFTWARE_PINS
+
+// Use this option only for debugging bitbang'd spi access or to work around bugs in hardware
+// spi access. Forces use of bit-banged spi, even on pins that has hardware SPI available.
+// #define FORCE_SOFTWARE_SPI
+#endif