From f8f9049620b88c259a2b60531e8313292f0e933b Mon Sep 17 00:00:00 2001 From: mahesh Date: Tue, 27 Jan 2026 11:48:02 +0530 Subject: [PATCH] components/esp_matter: Add missing weak definition of ContextSensingClusterServerInitCallback and ContextSensingClusterServerShutdownCallback --- .../esp_matter/zap_common/app/ClusterCallbacks.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/components/esp_matter/zap_common/app/ClusterCallbacks.cpp b/components/esp_matter/zap_common/app/ClusterCallbacks.cpp index 37207d6d5..38639ae3f 100644 --- a/components/esp_matter/zap_common/app/ClusterCallbacks.cpp +++ b/components/esp_matter/zap_common/app/ClusterCallbacks.cpp @@ -77,6 +77,16 @@ __attribute__((weak)) void ESPMatterAirQualityClusterServerShutdownCallback(Endp // Default empty implementation } +__attribute__((weak)) void ESPMatterAmbientContextSensingClusterServerInitCallback(EndpointId endpoint) +{ + // Default empty implementation +} + +__attribute__((weak)) void ESPMatterAmbientContextSensingClusterServerShutdownCallback(EndpointId endpoint) +{ + // Default empty implementation +} + __attribute__((weak)) void ESPMatterApplicationBasicClusterServerInitCallback(EndpointId endpoint) { // Default empty implementation