You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ut...@apache.org on 2021/07/13 09:43:37 UTC

[mynewt-mcumgr] branch master updated: samples/smp_svr/zephyr: Update stack size

This is an automated email from the ASF dual-hosted git repository.

utzig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-mcumgr.git


The following commit(s) were added to refs/heads/master by this push:
     new d8802de  samples/smp_svr/zephyr: Update stack size
d8802de is described below

commit d8802deabde876b8faca2389cca7090d40dd530b
Author: Dominik Ermel <do...@nordicsemi.no>
AuthorDate: Fri Jun 11 07:55:03 2021 +0000

    samples/smp_svr/zephyr: Update stack size
    
    The addition of image interpretation requires increase in stack
    size.
    
    Signed-off-by: Dominik Ermel <do...@nordicsemi.no>
---
 samples/smp_svr/zephyr/prj.conf      | 2 +-
 samples/smp_svr/zephyr/prj_tiny.conf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/samples/smp_svr/zephyr/prj.conf b/samples/smp_svr/zephyr/prj.conf
index ce0551b..61b775e 100644
--- a/samples/smp_svr/zephyr/prj.conf
+++ b/samples/smp_svr/zephyr/prj.conf
@@ -2,7 +2,7 @@
 CONFIG_MCUMGR=y
 
 # Some command handlers require a large stack.
-CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
+CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2304
 
 # Ensure an MCUboot-compatible binary is generated.
 CONFIG_BOOTLOADER_MCUBOOT=y
diff --git a/samples/smp_svr/zephyr/prj_tiny.conf b/samples/smp_svr/zephyr/prj_tiny.conf
index c53800d..3faa416 100644
--- a/samples/smp_svr/zephyr/prj_tiny.conf
+++ b/samples/smp_svr/zephyr/prj_tiny.conf
@@ -6,7 +6,7 @@
 CONFIG_MCUMGR=y
 
 # Some command handlers require a large stack.
-CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
+CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2304
 
 # Ensure an MCUboot-compatible binary is generated.
 CONFIG_BOOTLOADER_MCUBOOT=y