From 8aa4b25fca283a1bb81a96cfcfd6680c1a943829 Mon Sep 17 00:00:00 2001 From: Timothy Maes Date: Tue, 20 Sep 2022 17:19:39 +0200 Subject: [PATCH] Remove UpdateCluster from ClusterInitCallback to have working startup-on-off (#22724) --- examples/lighting-app/qpg/src/ZclCallbacks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/lighting-app/qpg/src/ZclCallbacks.cpp b/examples/lighting-app/qpg/src/ZclCallbacks.cpp index ed08c83a71251c..0d365320c7cf12 100644 --- a/examples/lighting-app/qpg/src/ZclCallbacks.cpp +++ b/examples/lighting-app/qpg/src/ZclCallbacks.cpp @@ -142,5 +142,5 @@ void MatterPostAttributeChangeCallback(const chip::app::ConcreteAttributePath & */ void emberAfOnOffClusterInitCallback(EndpointId endpoint) { - GetAppTask().UpdateClusterState(); + // No additional init currently - startup state handled by cluster. }