From 4b8d838a9bc3d4bca88dec8cfb5c16722b059dc0 Mon Sep 17 00:00:00 2001 From: WanqQixiang Date: Fri, 20 Sep 2024 10:58:58 +0800 Subject: [PATCH] esp-matter: Unique has been changed to be mandatory --- components/esp_matter/esp_matter_cluster.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/components/esp_matter/esp_matter_cluster.cpp b/components/esp_matter/esp_matter_cluster.cpp index 0aa9f0482..b0a80b88b 100644 --- a/components/esp_matter/esp_matter_cluster.cpp +++ b/components/esp_matter/esp_matter_cluster.cpp @@ -252,6 +252,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) attribute::create_hardware_version_string(cluster, NULL, 0); attribute::create_software_version(cluster, 0); attribute::create_software_version_string(cluster, NULL, 0); + attribute::create_unique_id(cluster, NULL, 0); attribute::create_capability_minima(cluster, NULL, 0, 0); attribute::create_specification_version(cluster, 0); attribute::create_max_paths_per_invoke(cluster, 0);