mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
components/esp_matter:Update the return type for the attribute read methods in mock chime delegate
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user