From 615adaf463ea8c99fd77c3781562b650deae2bb4 Mon Sep 17 00:00:00 2001 From: Ivan Efimov Date: Tue, 14 Feb 2023 09:57:44 -0600 Subject: [PATCH] Fix: Renamed USE_LEDSTRIP_64 to USE_LED_STRIP_64 (#12365) --- src/main/target/common_pre.h | 2 +- src/test/unit/platform.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/target/common_pre.h b/src/main/target/common_pre.h index 647dc2d83..7b2231f4f 100644 --- a/src/main/target/common_pre.h +++ b/src/main/target/common_pre.h @@ -283,7 +283,7 @@ #endif // !defined(CLOUD_BUILD) #if !defined(LED_MAX_STRIP_LENGTH) -#ifdef USE_LEDSTRIP_64 +#ifdef USE_LED_STRIP_64 #define LED_MAX_STRIP_LENGTH 64 #else #define LED_MAX_STRIP_LENGTH 32 diff --git a/src/test/unit/platform.h b/src/test/unit/platform.h index 2a0152431..72355cf6c 100644 --- a/src/test/unit/platform.h +++ b/src/test/unit/platform.h @@ -44,7 +44,7 @@ #define USE_TRANSPONDER #ifndef LED_MAX_STRIP_LENGTH - #ifdef USE_LEDSTRIP_64 + #ifdef USE_LED_STRIP_64 #define LED_MAX_STRIP_LENGTH 64 #else #define LED_MAX_STRIP_LENGTH 32 -- 2.11.4.GIT