Skip to content

Commit 4426387

Browse files
adabreutipull[bot]
authored andcommitted
Reenable logging for lock-app by converting to Thread MTD (#20679)
* Reenable logging for lock-app by converting to Thread MTD * Update CI
1 parent b567dd9 commit 4426387

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/lock-app/cc13x2x7_26x2x7/args.gni

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ lwip_debug = false
2929
chip_enable_ota_requestor = true
3030

3131
# Disable CHIP Logging
32-
chip_progress_logging = false
32+
#chip_progress_logging = false
3333
chip_detail_logging = false
3434
chip_automation_logging = false
3535

@@ -40,7 +40,7 @@ chip_config_network_layer_ble = true
4040
# INCLUDE_xSemaphoreGetMutexHolder
4141
chip_stack_lock_tracking = "none"
4242

43-
chip_openthread_ftd = true
43+
chip_openthread_ftd = false
4444

4545
matter_device_vid = "0xFFF1"
4646
matter_device_pid = "0x8006"

scripts/build/builders/cc13x2x7_26x2x7.py

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def GnBuildArgs(self):
8585
pass
8686
elif self.openthread_ftd:
8787
args.append('chip_openthread_ftd=true')
88+
args.append('chip_progress_logging=false')
8889
else:
8990
args.append('chip_openthread_ftd=false')
9091

scripts/build/testdata/build_all_except_host.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/exa
158158
gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/examples/all-clusters-minimal-app/cc13x2x7_26x2x7 '--args=ti_sysconfig_root="TEST_TI_SYSCONFIG_ROOT"' {out}/cc13x2x7_26x2x7-all-clusters-minimal
159159

160160
# Generating cc13x2x7_26x2x7-lock-ftd
161-
gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/examples/lock-app/cc13x2x7_26x2x7 '--args=ti_sysconfig_root="TEST_TI_SYSCONFIG_ROOT" chip_openthread_ftd=true' {out}/cc13x2x7_26x2x7-lock-ftd
161+
gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/examples/lock-app/cc13x2x7_26x2x7 '--args=ti_sysconfig_root="TEST_TI_SYSCONFIG_ROOT" chip_openthread_ftd=true chip_progress_logging=false' {out}/cc13x2x7_26x2x7-lock-ftd
162162

163163
# Generating cc13x2x7_26x2x7-lock-mtd
164164
gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/examples/lock-app/cc13x2x7_26x2x7 '--args=ti_sysconfig_root="TEST_TI_SYSCONFIG_ROOT" chip_openthread_ftd=false' {out}/cc13x2x7_26x2x7-lock-mtd

0 commit comments

Comments
 (0)