From a1087f82a4cd268f9dd6832f73b38c60a4f21fd5 Mon Sep 17 00:00:00 2001 From: chirag-silabs <100861685+chirag-silabs@users.noreply.github.com> Date: Wed, 28 Aug 2024 11:58:23 +0530 Subject: [PATCH] increasing the chip task size for the 917soc (#35213) --- src/platform/silabs/CHIPDevicePlatformConfig.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/platform/silabs/CHIPDevicePlatformConfig.h b/src/platform/silabs/CHIPDevicePlatformConfig.h index 091940bff31291..010d72ebb887eb 100644 --- a/src/platform/silabs/CHIPDevicePlatformConfig.h +++ b/src/platform/silabs/CHIPDevicePlatformConfig.h @@ -130,7 +130,11 @@ // ========== Platform-specific Configuration Overrides ========= #ifndef CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE +#if SLI_SI91X_MCU_INTERFACE +#define CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE (7 * 1024) +#else #define CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE (6 * 1024) +#endif #endif // CHIP_DEVICE_CONFIG_CHIP_TASK_STACK_SIZE #ifndef CHIP_DEVICE_CONFIG_THREAD_TASK_STACK_SIZE