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:
authorSam Guyer <sam.guyer@gmail.com>2019-07-03 05:06:18 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2019-07-03 05:06:18 +0300
commitbbcbb4017ced2f63e521bc1cf7e7b9669da1b1cb (patch)
treeb7941ad3b5d10f6c6c82e98001f8f0cacb9e4f79
parentdf0fef3b7cd63cce3fc8e0ce8ed5f8d1c8c87ef4 (diff)
Bug fix to preserve color order information (#831)
-rw-r--r--platforms/esp/32/clockless_rmt_esp32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/esp/32/clockless_rmt_esp32.h b/platforms/esp/32/clockless_rmt_esp32.h
index c9fee8a5..accd6008 100644
--- a/platforms/esp/32/clockless_rmt_esp32.h
+++ b/platforms/esp/32/clockless_rmt_esp32.h
@@ -526,7 +526,7 @@ protected:
// buffer with pixel data. It also handles the case where the
// pixel data is exhausted, so we need to fill the RMT buffer
// with zeros to signal that it's done.
- void IRAM_ATTR fillHalfRMTBuffer()
+ virtual void IRAM_ATTR fillHalfRMTBuffer()
{
uint32_t one_val = mOne.val;
uint32_t zero_val = mZero.val;