File tree 4 files changed +16
-14
lines changed
4 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ static chip::DeviceLayer::Internal::Efr32PsaOperationalKeystore gOperationalKeys
58
58
#include < app/InteractionModelEngine.h>
59
59
#include < app/TimerDelegates.h>
60
60
61
- #if SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
62
- #include " SilabsTestEventTriggerDelegate.h"
63
- #endif // SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
61
+ #ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
62
+ #include " SilabsTestEventTriggerDelegate.h" // nogncheck
63
+ #endif
64
64
65
65
#if CHIP_CONFIG_SYNCHRONOUS_REPORTS_ENABLED
66
66
#include < app/reporting/SynchronizedReportSchedulerImpl.h>
@@ -277,7 +277,7 @@ CHIP_ERROR SilabsMatterConfig::InitMatter(const char * appName)
277
277
278
278
initParams.reportScheduler = &sReportScheduler ;
279
279
280
- #if SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
280
+ #ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
281
281
static SilabsTestEventTriggerDelegate sTestEventTriggerDelegate ;
282
282
initParams.testEventTriggerDelegate = &sTestEventTriggerDelegate ;
283
283
#endif // SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
Original file line number Diff line number Diff line change @@ -78,10 +78,11 @@ config("chip_examples_project_config") {
78
78
}
79
79
80
80
config (" test-event-trigger-config" ) {
81
- defines = [
82
- " SL_MATTER_TEST_EVENT_TRIGGER_ENABLED" ,
83
- " SL_MATTER_TEST_EVENT_TRIGGER_ENABLE_KEY=\" ${ sl_test_event_trigger_enable_key } \" " ,
84
- ]
81
+ defines = [ " SL_MATTER_TEST_EVENT_TRIGGER_ENABLED" ]
82
+
83
+ if (is_debug ) {
84
+ defines += [ " SL_MATTER_TEST_EVENT_TRIGGER_ENABLE_KEY=\" ${ sl_test_event_trigger_enable_key } \" " ]
85
+ }
85
86
}
86
87
87
88
source_set (" test-event-trigger" ) {
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ namespace chip {
25
25
26
26
bool SilabsTestEventTriggerDelegate::DoesEnableKeyMatch (const ByteSpan & enableKey) const
27
27
{
28
- uint8_t enableKey [TestEventTriggerDelegate::kEnableKeyLength ];
29
- MutableByteSpan enableKeySpan (mEnableKey );
28
+ uint8_t storedEnableKey [TestEventTriggerDelegate::kEnableKeyLength ];
29
+ MutableByteSpan enableKeySpan (storedEnableKey );
30
30
31
31
// Return false if we were not able to get the enableKey
32
32
VerifyOrReturnValue (
Original file line number Diff line number Diff line change @@ -95,10 +95,11 @@ config("chip_examples_project_config") {
95
95
}
96
96
97
97
config (" test-event-trigger-config" ) {
98
- defines = [
99
- " SL_MATTER_TEST_EVENT_TRIGGER_ENABLED" ,
100
- " SL_MATTER_TEST_EVENT_TRIGGER_ENABLE_KEY=\" ${ sl_test_event_trigger_enable_key } \" " ,
101
- ]
98
+ defines = [ " SL_MATTER_TEST_EVENT_TRIGGER_ENABLED" ]
99
+
100
+ if (is_debug ) {
101
+ defines += [ " SL_MATTER_TEST_EVENT_TRIGGER_ENABLE_KEY=\" ${ sl_test_event_trigger_enable_key } \" " ]
102
+ }
102
103
}
103
104
104
105
source_set (" test-event-trigger" ) {
You can’t perform that action at this time.
0 commit comments