Skip to content

Commit 5364695

Browse files
mkardous-silabspull[bot]
authored andcommitted
enable peristent subs by default (#27222)
1 parent c23e590 commit 5364695

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

examples/platform/silabs/efr32/BUILD.gn

-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ declare_args() {
4343
chip_config_use_icd_subscription_callbacks = enable_sleepy_device
4444
}
4545

46-
# Use persitent subscriptions for IC devices
47-
chip_persist_subscriptions = enable_sleepy_device
48-
4946
silabs_common_plat_dir = "${chip_root}/examples/platform/silabs"
5047

5148
import("${silabs_common_plat_dir}/args.gni")

src/platform/device.gni

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ declare_args() {
103103

104104
# Enable Subscription persistence / resumption for CI and supported platforms
105105
if (chip_device_platform == "darwin" || chip_device_platform == "linux" ||
106-
chip_device_platform == "esp32" || chip_device_platform == "fake") {
106+
chip_device_platform == "esp32" || chip_device_platform == "fake" ||
107+
chip_device_platform == "efr32" || chip_device_platform == "SiWx917") {
107108
chip_persist_subscriptions = true
108109
} else {
109110
chip_persist_subscriptions = false

0 commit comments

Comments
 (0)