Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 030dcb5a0 -> fb557b5b9


slinky; Bump up the stack allocation for task1, as it was overflowing.


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

Branch: refs/heads/develop
Commit: fb557b5b96fbd299df8b8367a28100510cf86fa7
Parents: 030dcb5
Author: Marko Kiiskila <[email protected]>
Authored: Wed Aug 3 14:04:36 2016 -0700
Committer: Marko Kiiskila <[email protected]>
Committed: Wed Aug 3 14:04:36 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/fb557b5b/apps/slinky/src/main.c
----------------------------------------------------------------------
diff --git a/apps/slinky/src/main.c b/apps/slinky/src/main.c
index d9dd29a..7f724e6 100755
--- a/apps/slinky/src/main.c
+++ b/apps/slinky/src/main.c
@@ -59,7 +59,7 @@ int init_tasks(void);
 
 /* Task 1 */
 #define TASK1_PRIO (8)
-#define TASK1_STACK_SIZE    OS_STACK_ALIGN(128)
+#define TASK1_STACK_SIZE    OS_STACK_ALIGN(192)
 #define MAX_CBMEM_BUF 600
 struct os_task task1;
 os_stack_t stack1[TASK1_STACK_SIZE];

Reply via email to