components/esp_matter:Update the return type for the attribute read methods in mock chime delegate

This commit is contained in:
mahesh
2026-02-13 15:27:46 +05:30
parent 1f50e4e84c
commit 1cbdf2f8c7
@@ -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()