You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/06/05 11:52:08 UTC

[21/43] incubator-mynewt-core git commit: bletiny - Increase stack size for SC.

bletiny - Increase stack size for SC.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/2a591404
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/2a591404
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/2a591404

Branch: refs/heads/develop
Commit: 2a5914042573d22907a5d38cded07da909090549
Parents: e4bab33
Author: Christopher Collins <cc...@apache.org>
Authored: Wed Jun 1 10:01:37 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Sun Jun 5 19:15:48 2016 +0800

----------------------------------------------------------------------
 apps/bletiny/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/2a591404/apps/bletiny/src/main.c
----------------------------------------------------------------------
diff --git a/apps/bletiny/src/main.c b/apps/bletiny/src/main.c
index 89288f2..c7752bd 100755
--- a/apps/bletiny/src/main.c
+++ b/apps/bletiny/src/main.c
@@ -85,7 +85,7 @@ struct os_mbuf_pool default_mbuf_pool;
 struct os_mempool default_mbuf_mpool;
 
 /* BLETINY variables */
-#define BLETINY_STACK_SIZE             (OS_STACK_ALIGN(288))
+#define BLETINY_STACK_SIZE             (OS_STACK_ALIGN(512))
 #define BLETINY_TASK_PRIO              1
 
 #if NIMBLE_OPT(ROLE_CENTRAL)