File tree 4 files changed +8
-9
lines changed
4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ declare_args() {
40
40
# default Wifi Password
41
41
chip_default_wifi_psk = " "
42
42
43
- # Enable TestEventTrigger in GeneralDiagnostics cluster
44
- sl_enable_test_event_trigger = false
45
-
46
43
# The EnableKey in hex string format used by TestEventTrigger command in
47
44
# GeneralDiagnostics cluster. The length of the string should be 16 bytes.
48
45
sl_test_event_trigger_enable_key = " 00112233445566778899AABBCCDDEEFF"
Original file line number Diff line number Diff line change @@ -40,9 +40,6 @@ declare_args() {
40
40
# default Wifi Password
41
41
chip_default_wifi_psk = " "
42
42
43
- # Enable TestEventTrigger in GeneralDiagnostics cluster
44
- sl_enable_test_event_trigger = false
45
-
46
43
# The EnableKey in hex string format used by TestEventTrigger command in
47
44
# GeneralDiagnostics cluster. The length of the string should be 16 bytes.
48
45
sl_test_event_trigger_enable_key = " 00112233445566778899AABBCCDDEEFF"
Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ source_set("storage") {
51
51
public_deps =
52
52
[ " ${ chip_root } /src/platform/silabs/provision:provision-headers" ]
53
53
54
- public_configs = [
55
- " ${ chip_root } /examples/platform/silabs/efr32:test-event-trigger-config" ,
56
- ]
54
+ if (sl_enable_test_event_trigger ) {
55
+ public_configs = [
56
+ " ${ chip_root } /examples/platform/silabs/efr32:test-event-trigger-config" ,
57
+ ]
58
+ }
57
59
}
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ declare_args() {
86
86
87
87
# Factory Provision storage
88
88
use_provision_flash_storage = wifi_soc
89
+
90
+ # Enable TestEventTrigger in GeneralDiagnostics cluster
91
+ sl_enable_test_event_trigger = false
89
92
}
90
93
91
94
examples_plat_dir = " ${ chip_root } /examples/platform/silabs/efr32"
You can’t perform that action at this time.
0 commit comments