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/05/17 20:30:08 UTC

[2/3] incubator-mynewt-core git commit: bleprph - Increase stack size to prevent crash.

bleprph - Increase stack size to prevent crash.


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/65b4cc3f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/65b4cc3f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/65b4cc3f

Branch: refs/heads/develop
Commit: 65b4cc3f46e465f3544e6100a8d90d811e87a3d3
Parents: 4a98307
Author: Christopher Collins <cc...@apache.org>
Authored: Tue May 17 13:28:42 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Tue May 17 13:30:03 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/65b4cc3f/apps/bleprph/src/main.c
----------------------------------------------------------------------
diff --git a/apps/bleprph/src/main.c b/apps/bleprph/src/main.c
index b02933e..97a9367 100755
--- a/apps/bleprph/src/main.c
+++ b/apps/bleprph/src/main.c
@@ -61,7 +61,7 @@ struct log bleprph_log;
 #define BLEPRPH_BLE_HS_PRIO         (1)
 
 /** bleprph task settings. */
-#define BLEPRPH_STACK_SIZE          (OS_STACK_ALIGN(288))
+#define BLEPRPH_STACK_SIZE          (OS_STACK_ALIGN(336))
 #define BLEPRPH_TASK_PRIO           (BLEPRPH_BLE_HS_PRIO + 1)
 
 struct os_eventq bleprph_evq;