From 343ef5d1ce563ea7b4a128197137b32fff2e419b Mon Sep 17 00:00:00 2001 From: Timothy Maes Date: Tue, 30 Aug 2022 14:22:45 +0000 Subject: [PATCH] Remove UpdateCluster from ClusterInitCallback to have working startup-on-off --- 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. }