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:
authorVince <balbinus@users.noreply.github.com>2018-11-21 23:13:22 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2018-11-21 23:13:22 +0300
commit8f2e86434b2bfa4d6178622ca3745a68303f8b00 (patch)
tree9368da316a3c02bee65ab4c728d5e0c8779c3217 /led_sysdefs.h
parenta3c70f59acd36b21f613ecad9b3a79fa5656a4a3 (diff)
Add basic support for SAMD51, used in M4 line from Adafruit (#662)
* Add basic support for SAMD51, used in M4 line from Adafruit. Support is only based on Adafruit ItsyBitsy M4 Express, since it’s the only M4 board I have. * Pin verification from ItsyBitsy's variant.h + mixup between I2C and SPI
Diffstat (limited to 'led_sysdefs.h')
-rw-r--r--led_sysdefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/led_sysdefs.h b/led_sysdefs.h
index 4b9aedc8..13fbf4c3 100644
--- a/led_sysdefs.h
+++ b/led_sysdefs.h
@@ -21,7 +21,7 @@
#include "platforms/arm/sam/led_sysdefs_arm_sam.h"
#elif defined(STM32F10X_MD) || defined(__STM32F1__)
#include "platforms/arm/stm32/led_sysdefs_arm_stm32.h"
-#elif defined(__SAMD21G18A__) || defined(__SAMD21J18A__) || defined(__SAMD21E17A__) || defined(__SAMD21E18A__)
+#elif defined(__SAMD21G18A__) || defined(__SAMD21J18A__) || defined(__SAMD21E17A__) || defined(__SAMD21E18A__) || defined(__SAMD51G19A__)
#include "platforms/arm/d21/led_sysdefs_arm_d21.h"
#elif defined(ESP8266)
#include "platforms/esp/8266/led_sysdefs_esp8266.h"