From dc741d4d832858e66481e9b0adb7aa14b10fcf5d Mon Sep 17 00:00:00 2001 From: Ivan Efimov Date: Fri, 30 Aug 2024 08:14:42 -0500 Subject: [PATCH] if USE_WING is defined then define also ADVANCED_TPA and SERVOS (#13860) --- src/main/target/common_pre.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/target/common_pre.h b/src/main/target/common_pre.h index 83c1b3edc2..9cb75fe74e 100644 --- a/src/main/target/common_pre.h +++ b/src/main/target/common_pre.h @@ -456,3 +456,12 @@ #endif #endif // USE_RACE_PRO + +#ifdef USE_WING +#ifndef USE_SERVOS +#define USE_SERVOS +#endif +#ifndef USE_ADVANCED_TPA +#define USE_ADVANCED_TPA +#endif +#endif // USE_WING