From 326d405c2649254e428efc54bb51f2d5903b5af1 Mon Sep 17 00:00:00 2001 From: bernard Date: Mon, 9 Oct 2017 15:13:19 +0800 Subject: [PATCH] [Kconfig] Use 256 as the default stack size for idle thread. --- src/KConfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/KConfig b/src/KConfig index 07a03db9a7..2266ab3e55 100644 --- a/src/KConfig +++ b/src/KConfig @@ -56,10 +56,10 @@ config RT_USING_HOOK default y help Enable the hook function when system running, such as idle thread hook, thread context switch etc. - + config IDLE_THREAD_STACK_SIZE - int "The stack size of IDLE thread" - default 1024 + int "The stack size of idle thread" + default 256 config RT_USING_TIMER_SOFT bool "Enable software timer with a timer thread"