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>2016-04-12 18:30:08 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2016-04-12 18:30:08 +0300
commitb48eb78deae33002ce2c2093134857b8a4686845 (patch)
treea917f93e284e2c239e51dd7633f15b7ec15b2c36 /chipsets.h
parent9bc20805f1029919bed98334e835c950429b6bea (diff)
Make sure all clockless implementations that allow interrupts re-try if a frame is cut short.
Diffstat (limited to 'chipsets.h')
-rw-r--r--chipsets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chipsets.h b/chipsets.h
index 79a03271..54db5571 100644
--- a/chipsets.h
+++ b/chipsets.h
@@ -344,7 +344,7 @@ class UCS1904Controller800Khz : public ClocklessController<DATA_PIN, 3 * FMUL, 3
template <uint8_t DATA_PIN, EOrder RGB_ORDER = RGB>
class UCS2903Controller : public ClocklessController<DATA_PIN, 2 * FMUL, 6 * FMUL, 2 * FMUL, RGB_ORDER> {};
-
+
template <uint8_t DATA_PIN, EOrder RGB_ORDER = RGB>
class TM1809Controller800Khz : public ClocklessController<DATA_PIN, 2 * FMUL, 5 * FMUL, 3 * FMUL, RGB_ORDER> {};