[components/esp-matter] Fix cluster revision of operational state cluster

This commit is contained in:
Rohit Jadhav
2024-06-05 12:29:16 +05:30
parent 6410ea9d63
commit 73d0d18364
+1 -1
View File
@@ -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);