Merge branch 'backport_1_5_change_identify_type_flag_to_none' into 'release/v1.5'

[v1.5]data_model/change identify type attribute flag to ATTRIBUTE_FLAG_NONE to fix init failed

See merge request app-frameworks/esp-matter!1493
This commit is contained in:
Hrishikesh Dhayagude
2026-04-07 16:41:07 +08:00
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
[codespell]
ignore-regex = _
ignore-words-list = ot, bootup, requestor, pase, lits, kNo
ignore-words-list = ot, bootup, requestor, pase, lits, kNo, currenty
@@ -1426,8 +1426,7 @@ attribute_t *create_identify_time(cluster_t *cluster, uint16_t value)
attribute_t *create_identify_type(cluster_t *cluster, uint8_t value)
{
return esp_matter::attribute::create(cluster, Identify::Attributes::IdentifyType::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY,
esp_matter_enum8(value));
return esp_matter::attribute::create(cluster, Identify::Attributes::IdentifyType::Id, ATTRIBUTE_FLAG_NONE, esp_matter_enum8(value));
}
} /* attribute */