From 3eec3989aab9a73d459d1a75b60c819d4abd28a0 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Fri, 16 Aug 2024 14:09:29 +1000 Subject: [PATCH] x --- Tools/autotest/test_build_options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/autotest/test_build_options.py b/Tools/autotest/test_build_options.py index 4c786cb4fd66ae..5497b2aaba68a6 100755 --- a/Tools/autotest/test_build_options.py +++ b/Tools/autotest/test_build_options.py @@ -367,9 +367,10 @@ def define_is_whitelisted_for_feature_in_code(self, target, define): # RSSI is not initialised - probably should be for some feature_define_whitelist.add(r'AP_RSSI_ENABLED') - if target.lower() in ["antennatracker"]: + if target.lower() in ["antennatracker", "sub"]: # missing the init call to the relay library: feature_define_whitelist.add(r'AP_RELAY_ENABLED') + feature_define_whitelist.add(r'AP_RC_CHANNEL_AUX_FUNCTION_STRINGS_ENABLED') for some_re in feature_define_whitelist: if re.match(some_re, define):