From 50a40b9ac5695d6a2b3390df73897dd2373a3f05 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Mon, 16 Sep 2024 16:54:55 +0530 Subject: [PATCH] components/esp-matter: NameSuport feature should be set to 1 and not 128 --- components/esp_matter/esp_matter_cluster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/esp_matter_cluster.cpp b/components/esp_matter/esp_matter_cluster.cpp index 256dfab2b..b728c5481 100644 --- a/components/esp_matter/esp_matter_cluster.cpp +++ b/components/esp_matter/esp_matter_cluster.cpp @@ -1084,7 +1084,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) add_function_list(cluster, function_list, function_flags); /* Attributes managed internally */ - global::attribute::create_feature_map(cluster, static_cast(Groups::NameSupportBitmap::kGroupNames)); + global::attribute::create_feature_map(cluster, static_cast(Groups::Feature::kGroupNames)); /* Attributes not managed internally */ global::attribute::create_cluster_revision(cluster, cluster_revision);