From 53d1a2627f520bd1a4218566c39f9a9789ad1530 Mon Sep 17 00:00:00 2001 From: wdfk-prog <1425075683@qq.com> Date: Mon, 5 Aug 2024 23:59:56 +0800 Subject: [PATCH] [drivers][sdio] Change the default stack size to 2048 --- components/drivers/sdio/Kconfig | 2 +- components/drivers/sdio/mmcsd_core.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/drivers/sdio/Kconfig b/components/drivers/sdio/Kconfig index e5bff4549d..3a464e73cf 100644 --- a/components/drivers/sdio/Kconfig +++ b/components/drivers/sdio/Kconfig @@ -13,7 +13,7 @@ config RT_USING_SDIO config RT_MMCSD_STACK_SIZE int "The stack size for mmcsd thread" - default 1024 + default 2048 config RT_MMCSD_THREAD_PREORITY int "The priority level value of mmcsd thread" diff --git a/components/drivers/sdio/mmcsd_core.c b/components/drivers/sdio/mmcsd_core.c index 13727c7a4c..8298ef6baa 100644 --- a/components/drivers/sdio/mmcsd_core.c +++ b/components/drivers/sdio/mmcsd_core.c @@ -24,7 +24,7 @@ #include #ifndef RT_MMCSD_STACK_SIZE -#define RT_MMCSD_STACK_SIZE 1024 +#define RT_MMCSD_STACK_SIZE 2048 #endif #ifndef RT_MMCSD_THREAD_PREORITY #if (RT_THREAD_PRIORITY_MAX == 32)