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 <dgarcia@dgarcia.net>2019-08-26 03:07:54 +0300
committerDaniel Garcia <dgarcia@dgarcia.net>2019-08-26 03:07:54 +0300
commit6110d35f72214bb0bdb87bf37a030bc1769317b2 (patch)
tree50884b92083202e8a35e9d0dab92dfb65b5298b5
parent8ac3dd7f00e933a376530ecf86d360d167e1b82a (diff)
Fix #865 - use the atmega1284/644 definitions for atmega32 as well
-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 a8df76c4..5b39aa09 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__)
+#elif defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega32__)
#define MAX_PIN 31
_FL_DEFPIN(0, 0, B); _FL_DEFPIN(1, 1, B); _FL_DEFPIN(2, 2, B); _FL_DEFPIN(3, 3, B);