From eb083265f47e6196931fb7ea4624b2dabcf02ac2 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 27 Mar 2020 15:29:07 +0900 Subject: [PATCH] system/flash_eraseall: Bump stack size to DEFAULT_TASK_STACKSIZE --- system/flash_eraseall/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/flash_eraseall/Makefile b/system/flash_eraseall/Makefile index bf213f686..7a16758c7 100644 --- a/system/flash_eraseall/Makefile +++ b/system/flash_eraseall/Makefile @@ -41,7 +41,7 @@ PROGNAME = flash_eraseall PRIORITY = SCHED_PRIORITY_DEFAULT -STACKSIZE = 1024 +STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE) MODULE = $(CONFIG_SYSTEM_FLASH_ERASEALL) MAINSRC = flash_eraseall_main.c