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:
authorGreg Mathews <gregdmathews@gmail.com>2020-01-03 19:58:25 +0300
committerGitHub <noreply@github.com>2020-01-03 19:58:25 +0300
commitdb30aab5de14decef17dfb98ab96ad89722683b5 (patch)
treecea2887ec7de61bd92abd6e1cb891b1e524ad495
parent8b31b643e42d8a53a3df9abc96bf45f00adf52df (diff)
Underscore was missing
This was causing it to not compile on the Adafruit Feather nRF52840 Express for me.
-rw-r--r--platforms/arm/nrf52/fastpin_arm_nrf52.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platforms/arm/nrf52/fastpin_arm_nrf52.h b/platforms/arm/nrf52/fastpin_arm_nrf52.h
index 75260004..b761cfa8 100644
--- a/platforms/arm/nrf52/fastpin_arm_nrf52.h
+++ b/platforms/arm/nrf52/fastpin_arm_nrf52.h
@@ -290,7 +290,7 @@ public:
// _FL_DEFPIN(47, 47, 1);
//
-#define FL_DEFPIN(ARDUINO_PIN, BOARD_PIN, BOARD_PORT) \
+#define _FL_DEFPIN(ARDUINO_PIN, BOARD_PIN, BOARD_PORT) \
template<> class FastPin<ARDUINO_PIN> : \
public _ARMPIN< \
1u << (BOARD_PIN & 31u), \