From 206eadab5a5d451f18a9bcf0ace1bf173be64957 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Sun, 11 Feb 2018 13:14:44 +0800 Subject: [PATCH] console example: increase main task stack size Stack size was not sufficient for logging at Verbose log level. --- examples/system/console/sdkconfig.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/system/console/sdkconfig.defaults b/examples/system/console/sdkconfig.defaults index 4bb6acaaae..cb3bc34517 100644 --- a/examples/system/console/sdkconfig.defaults +++ b/examples/system/console/sdkconfig.defaults @@ -3,7 +3,7 @@ CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y CONFIG_LOG_BOOTLOADER_LEVEL=2 # Increase main task stack size -CONFIG_MAIN_TASK_STACK_SIZE=6144 +CONFIG_MAIN_TASK_STACK_SIZE=7168 # Enable filesystem CONFIG_PARTITION_TABLE_CUSTOM=y