From 1cbdf2f8c705c5ef75ed8decee92f5a5db2f3532 Mon Sep 17 00:00:00 2001 From: mahesh Date: Fri, 13 Feb 2026 15:27:46 +0530 Subject: [PATCH] components/esp_matter:Update the return type for the attribute read methods in mock chime delegate --- .../main/mock_delegates/mock_chime_delegate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/all_device_types_app/main/mock_delegates/mock_chime_delegate.cpp b/examples/all_device_types_app/main/mock_delegates/mock_chime_delegate.cpp index b571da94f..3784066a5 100644 --- a/examples/all_device_types_app/main/mock_delegates/mock_chime_delegate.cpp +++ b/examples/all_device_types_app/main/mock_delegates/mock_chime_delegate.cpp @@ -21,14 +21,14 @@ CHIP_ERROR MockChimeDelegate::GetChimeSoundByIndex(uint8_t chimeIndex, uint8_t { // Implement your own logic here. ESP_LOGE(LOG_TAG, "%s is not implemented", __func__); - return CHIP_NO_ERROR; + return CHIP_ERROR_PROVIDER_LIST_EXHAUSTED; } CHIP_ERROR MockChimeDelegate::GetChimeIDByIndex(uint8_t chimeIndex, uint8_t &chimeID) { // Implement your own logic here. ESP_LOGE(LOG_TAG, "%s is not implemented", __func__); - return CHIP_NO_ERROR; + return CHIP_ERROR_PROVIDER_LIST_EXHAUSTED; } Protocols::InteractionModel::Status MockChimeDelegate::PlayChimeSound()