diff --git a/examples/lighting-app/qpg/.gn b/examples/lighting-app/qpg/.gn index 438f76dfea04e8..3d48789e30ab3d 100644 --- a/examples/lighting-app/qpg/.gn +++ b/examples/lighting-app/qpg/.gn @@ -23,7 +23,6 @@ check_system_includes = true default_args = { target_cpu = "arm" target_os = "freertos" - chip_openthread_ftd = false import("//args.gni") } diff --git a/examples/lighting-app/qpg/args.gni b/examples/lighting-app/qpg/args.gni index 748cff2ce4a916..d62d91402aa283 100644 --- a/examples/lighting-app/qpg/args.gni +++ b/examples/lighting-app/qpg/args.gni @@ -20,6 +20,7 @@ qpg_sdk_target = get_label_info(":sdk", "label_no_toolchain") declare_args() { chip_enable_ota_requestor = true + chip_openthread_ftd = true # Disable lock tracking, since our FreeRTOS configuration does not set # INCLUDE_xSemaphoreGetMutexHolder diff --git a/examples/lock-app/qpg/args.gni b/examples/lock-app/qpg/args.gni index 748cff2ce4a916..e6c39ccee5331a 100644 --- a/examples/lock-app/qpg/args.gni +++ b/examples/lock-app/qpg/args.gni @@ -20,6 +20,7 @@ qpg_sdk_target = get_label_info(":sdk", "label_no_toolchain") declare_args() { chip_enable_ota_requestor = true + chip_openthread_ftd = false # Disable lock tracking, since our FreeRTOS configuration does not set # INCLUDE_xSemaphoreGetMutexHolder diff --git a/examples/persistent-storage/qpg/args.gni b/examples/persistent-storage/qpg/args.gni index 69c0b0040eacc4..a21c418f1f82b0 100644 --- a/examples/persistent-storage/qpg/args.gni +++ b/examples/persistent-storage/qpg/args.gni @@ -17,6 +17,7 @@ import("//build_overrides/chip.gni") import("${chip_root}/examples/platform/qpg/args.gni") qpg_sdk_target = get_label_info(":sdk", "label_no_toolchain") chip_enable_openthread = false +chip_openthread_ftd = false chip_system_config_use_open_thread_udp = false declare_args() { diff --git a/examples/platform/qpg/args.gni b/examples/platform/qpg/args.gni index e785d562c628d0..d5ec8fbf4dabed 100644 --- a/examples/platform/qpg/args.gni +++ b/examples/platform/qpg/args.gni @@ -17,7 +17,6 @@ import("//build_overrides/chip.gni") import("${chip_root}/src/platform/qpg/args.gni") chip_enable_openthread = true -chip_openthread_ftd = false openthread_project_core_config_file = "OpenThreadConfig.h" openthread_core_config_deps = [] openthread_core_config_deps = [ diff --git a/examples/shell/qpg/args.gni b/examples/shell/qpg/args.gni index 0548eccffd74e6..aa5f8f16d9ed27 100644 --- a/examples/shell/qpg/args.gni +++ b/examples/shell/qpg/args.gni @@ -25,3 +25,5 @@ chip_build_libshell = true # Disable lock tracking, since our FreeRTOS configuration does not set # INCLUDE_xSemaphoreGetMutexHolder chip_stack_lock_tracking = "none" + +chip_openthread_ftd = false