We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da9c96a commit 4295151Copy full SHA for 4295151
examples/platform/silabs/provision/ProvisionStorageFlash.cpp
@@ -726,12 +726,16 @@ CHIP_ERROR Storage::SetOtaTlvEncryptionKey(const ByteSpan & value)
726
}
727
#endif // SL_MATTER_ENABLE_OTA_ENCRYPTION
728
729
-#ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
730
CHIP_ERROR Storage::GetTestEventTriggerKey(MutableByteSpan & keySpan)
731
{
+#ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
732
+ // TODO: Implement Getter
733
+ // Adding the same return twice to have the function structure
734
+ return CHIP_ERROR_NOT_IMPLEMENTED;
735
+#else
736
return CHIP_ERROR_NOT_IMPLEMENTED;
-}
737
#endif // SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
738
+}
739
740
} // namespace Provision
741
0 commit comments