From 178f35c7e0b65c68b11c6563c42384c658c9fe5e Mon Sep 17 00:00:00 2001 From: Doru Gucea Date: Fri, 4 Aug 2023 08:57:30 -0700 Subject: [PATCH] [K32W0, K32W1] Enable Synchronized report scheduler Introduced by upstream PR #27943. Signed-off-by: Doru Gucea --- src/platform/nxp/k32w/k32w0/CHIPPlatformConfig.h | 4 ++++ src/platform/nxp/k32w/k32w1/CHIPPlatformConfig.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/platform/nxp/k32w/k32w0/CHIPPlatformConfig.h b/src/platform/nxp/k32w/k32w0/CHIPPlatformConfig.h index 11e057fe5dabec..b51339c0d0e1f8 100644 --- a/src/platform/nxp/k32w/k32w0/CHIPPlatformConfig.h +++ b/src/platform/nxp/k32w/k32w0/CHIPPlatformConfig.h @@ -95,6 +95,10 @@ #define CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC NXP_ICD_SUPPORTED_CLIENTS_PER_FABRIC #endif // CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC +#ifndef CHIP_CONFIG_SYNCHRONOUS_REPORTS_ENABLED +#define CHIP_CONFIG_SYNCHRONOUS_REPORTS_ENABLED 1 +#endif + #endif #include "platform/nxp/common/CHIPNXPPlatformDefaultConfig.h" diff --git a/src/platform/nxp/k32w/k32w1/CHIPPlatformConfig.h b/src/platform/nxp/k32w/k32w1/CHIPPlatformConfig.h index 742efc41c2fb4e..0f105569fd9364 100644 --- a/src/platform/nxp/k32w/k32w1/CHIPPlatformConfig.h +++ b/src/platform/nxp/k32w/k32w1/CHIPPlatformConfig.h @@ -95,4 +95,8 @@ #define CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC NXP_ICD_SUPPORTED_CLIENTS_PER_FABRIC #endif // CHIP_CONFIG_ICD_CLIENTS_SUPPORTED_PER_FABRIC +#ifndef CHIP_CONFIG_SYNCHRONOUS_REPORTS_ENABLED +#define CHIP_CONFIG_SYNCHRONOUS_REPORTS_ENABLED 1 +#endif + #endif