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>2015-02-04 23:13:15 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2015-02-04 23:13:15 +0300
commita317355e108f2bb66679dacfbdc18f3a3dddb0f2 (patch)
tree735072982bd3fb3658737a5a01563db02c449e30 /fastspi.h
parent2f26e8b21c2aa0c4f1520b5e5ea710beb6bd858c (diff)
Set up systefs/fastled headers for k26. Tweak some TEENSY3 define checks to also check (or ignore) TEENSYLC
Diffstat (limited to 'fastspi.h')
-rw-r--r--fastspi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastspi.h b/fastspi.h
index 03a62b1e..979106d1 100644
--- a/fastspi.h
+++ b/fastspi.h
@@ -30,7 +30,7 @@ class SoftwareSPIOutput : public AVRSoftwareSPIOutput<_DATA_PIN, _CLOCK_PIN, _SP
#ifndef FASTLED_FORCE_SOFTWARE_SPI
#if defined(SPI_DATA) && defined(SPI_CLOCK)
-#if defined(FASTLED_TEENSY3) && defined(CORE_TEENSY)
+#if (defined(FASTLED_TEENSY3) || defined(FASTLED_TEENSYLC)) && defined(CORE_TEENSY)
template<uint8_t SPI_SPEED>
class SPIOutput<SPI_DATA, SPI_CLOCK, SPI_SPEED> : public ARMHardwareSPIOutput<SPI_DATA, SPI_CLOCK, SPI_SPEED, 0x4002C000> {};