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 00:49:20 +0300
committerGitHub <noreply@github.com>2020-01-05 00:49:20 +0300
commit241562b6cee16827727286fe5c06cd6d97973277 (patch)
treea4b9cb1322aa5bde94dbc65cb4e3d84fda9d88d7
parent6c51f7a60d9620ec581853fc539a786d110fb06f (diff)
parentdb30aab5de14decef17dfb98ab96ad89722683b5 (diff)
Merge pull request #946 from gregsqueeb/patch-1
Underscore was missing
-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), \