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:
authorMark Kriegsman <1334634+kriegsman@users.noreply.github.com>2020-01-05 01:02:06 +0300
committerGitHub <noreply@github.com>2020-01-05 01:02:06 +0300
commite559fcd1176c901a7c3d1a8ad48a5a77d5702491 (patch)
tree260231ee49d39b1e8d746ebe3a568afd64d62aae
parent241562b6cee16827727286fe5c06cd6d97973277 (diff)
parentbc273371fd28390906c7bee51ade27618d5a74d0 (diff)
Merge pull request #907 from cmooney3/add_mightycore_atmega16_support_to_fastpin_avr
Add Atmega16 support to fastpin_avr.h (Mightycore Arduino)
-rw-r--r--platforms/avr/fastpin_avr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/avr/fastpin_avr.h b/platforms/avr/fastpin_avr.h
index 5b39aa09..956e00a9 100644
--- a/platforms/avr/fastpin_avr.h
+++ b/platforms/avr/fastpin_avr.h
@@ -215,7 +215,7 @@ _FL_DEFPIN(16, 2, C); _FL_DEFPIN(17, 3, C); _FL_DEFPIN(18, 4, C); _FL_DEFPIN(19,
#define SPI_UART0_CLOCK 4
#endif
-#elif defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega32__)
+#elif defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega32__) || defined(__AVR_ATmega16__)
#define MAX_PIN 31
_FL_DEFPIN(0, 0, B); _FL_DEFPIN(1, 1, B); _FL_DEFPIN(2, 2, B); _FL_DEFPIN(3, 3, B);