From 7a6fc73a8c52292c5843344c617769d57eb8ed59 Mon Sep 17 00:00:00 2001 From: chbansal Date: Tue, 27 Aug 2024 13:56:40 +0530 Subject: [PATCH] increasing the chip task size for the 917soc --- 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