Skip to content

Commit 4295151

Browse files
Fix provision flash
1 parent da9c96a commit 4295151

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

examples/platform/silabs/provision/ProvisionStorageFlash.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -726,12 +726,16 @@ CHIP_ERROR Storage::SetOtaTlvEncryptionKey(const ByteSpan & value)
726726
}
727727
#endif // SL_MATTER_ENABLE_OTA_ENCRYPTION
728728

729-
#ifdef SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
730729
CHIP_ERROR Storage::GetTestEventTriggerKey(MutableByteSpan & keySpan)
731730
{
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
732736
return CHIP_ERROR_NOT_IMPLEMENTED;
733-
}
734737
#endif // SL_MATTER_TEST_EVENT_TRIGGER_ENABLED
738+
}
735739

736740
} // namespace Provision
737741

0 commit comments

Comments
 (0)