From 73d0d18364d093e20251591e9ca226bb3eb0011f Mon Sep 17 00:00:00 2001 From: Rohit Jadhav Date: Wed, 5 Jun 2024 12:29:16 +0530 Subject: [PATCH] [components/esp-matter] Fix cluster revision of operational state cluster --- components/esp_matter/esp_matter_cluster.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/esp_matter_cluster.h b/components/esp_matter/esp_matter_cluster.h index e88b5354c..c48d09d34 100644 --- a/components/esp_matter/esp_matter_cluster.h +++ b/components/esp_matter/esp_matter_cluster.h @@ -539,7 +539,7 @@ namespace operational_state { typedef struct config { uint16_t cluster_revision; void *delegate; - config() : cluster_revision(1), delegate(nullptr) {} + config() : cluster_revision(2), delegate(nullptr) {} } config_t; cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags);