Skip to content

Commit

Permalink
Reenable logging for lock-app by converting to Thread MTD (#20679) (#…
Browse files Browse the repository at this point in the history
…20772)

* Reenable logging for lock-app by converting to Thread MTD

* Update CI

Co-authored-by: adabreuti <[email protected]>
  • Loading branch information
woody-apple and adabreuti authored Jul 15, 2022
1 parent c749324 commit 3fba6cd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/lock-app/cc13x2x7_26x2x7/args.gni
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ lwip_debug = false
chip_enable_ota_requestor = true

# Disable CHIP Logging
chip_progress_logging = false
#chip_progress_logging = false
chip_detail_logging = false
chip_automation_logging = false

Expand All @@ -40,7 +40,7 @@ chip_config_network_layer_ble = true
# INCLUDE_xSemaphoreGetMutexHolder
chip_stack_lock_tracking = "none"

chip_openthread_ftd = true
chip_openthread_ftd = false

matter_device_vid = "0xFFF1"
matter_device_pid = "0x8006"
Expand Down
1 change: 1 addition & 0 deletions scripts/build/builders/cc13x2x7_26x2x7.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def GnBuildArgs(self):
pass
elif self.openthread_ftd:
args.append('chip_openthread_ftd=true')
args.append('chip_progress_logging=false')
else:
args.append('chip_openthread_ftd=false')

Expand Down
2 changes: 1 addition & 1 deletion scripts/build/testdata/build_all_except_host.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ gn gen --check --fail-on-unused-args --export-compile-commands --root={root}/exa
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

# Generating cc13x2x7_26x2x7-lock-ftd
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
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

# Generating cc13x2x7_26x2x7-lock-mtd
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
Expand Down

0 comments on commit 3fba6cd

Please sign in to comment.