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
path: root/src
diff options
context:
space:
mode:
authorSam Guyer <sam.guyer@gmail.com>2021-01-12 06:43:15 +0300
committerGitHub <noreply@github.com>2021-01-12 06:43:15 +0300
commit1fb0d7b2afd87695eb5f3c4af27c286b5e9f5fe0 (patch)
tree65758acb9dc3f703754fcd5f82f2bd49c8857426 /src
parentee0742e5fc3a443a886a34f06c0e92c3828009ce (diff)
parent5ad9a9793975bbd1a58a118dac03f56b29c1ae9d (diff)
Merge pull request #1170 from estshorter/fix_unused_variable
Remove an unused variable 'stuff_to_do'
Diffstat (limited to 'src')
-rw-r--r--src/platforms/esp/32/clockless_rmt_esp32.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/platforms/esp/32/clockless_rmt_esp32.cpp b/src/platforms/esp/32/clockless_rmt_esp32.cpp
index ca8aec47..9fbdab59 100644
--- a/src/platforms/esp/32/clockless_rmt_esp32.cpp
+++ b/src/platforms/esp/32/clockless_rmt_esp32.cpp
@@ -326,7 +326,6 @@ void IRAM_ATTR ESP32RMTController::interruptHandler(void *arg)
uint32_t intr_st = RMT.int_st.val;
uint8_t channel;
- bool stuff_to_do = false;
for (channel = 0; channel < gMaxChannel; channel++) {
int tx_done_bit = channel * 3;
int tx_next_bit = channel + 24;