Skip to content

Commit

Permalink
[drivers][sdio] Change the default stack size to 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
wdfk-prog committed Aug 5, 2024
1 parent 7549694 commit 53d1a26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/drivers/sdio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion components/drivers/sdio/mmcsd_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 53d1a26

Please sign in to comment.