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:
authorBen Isaacs <75862+ben-xo@users.noreply.github.com>2021-07-29 22:51:25 +0300
committerBen Isaacs <75862+ben-xo@users.noreply.github.com>2021-07-29 22:51:25 +0300
commit2b7624691968a2099942b4e48382d51bc39a4346 (patch)
treeaad45679ba3082f62f2daa4dec2b2f0a77348d99
parent5cc17b2be88982eb34b1998de22b83fee56d4f07 (diff)
Remove clobbering of TCCR0A left over from ancient times
Daniel Garcia commented out all of the other code which goes with this block in b9b23091 (2015). Remove this last remnant.
-rw-r--r--src/platforms/avr/clockless_trinket.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/platforms/avr/clockless_trinket.h b/src/platforms/avr/clockless_trinket.h
index 2cfbef0d..e5c1b0a6 100644
--- a/src/platforms/avr/clockless_trinket.h
+++ b/src/platforms/avr/clockless_trinket.h
@@ -473,10 +473,6 @@ protected:
DONE;
}
- #if (FASTLED_ALLOW_INTERRUPTS == 1)
- // stop using the clock juggler
- TCCR0A &= ~0x30;
- #endif
}
};