From 53cd68865379b172eb45c2924db0fac1f4f3c86b Mon Sep 17 00:00:00 2001 From: Ivan Efimov Date: Thu, 23 Feb 2023 20:10:19 -0600 Subject: [PATCH] Fix: Renamed USE_LEDSTRIP_64 to USE_LED_STRIP_64 (#12408) --- 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 ab2971733d..f339c88e0b 100644 --- a/src/main/target/common_pre.h +++ b/src/main/target/common_pre.h @@ -421,7 +421,7 @@ extern uint8_t _dmaram_end__; #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 2a01524310..72355cf6c9 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