[drivers][sdio] Change the default stack size to 2048

This commit is contained in:
wdfk-prog 2024-08-05 23:59:56 +08:00
parent 75496942c5
commit 53d1a2627f
2 changed files with 2 additions and 2 deletions

View File

@ -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"

View File

@ -24,7 +24,7 @@
#include <rtdbg.h>
#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)