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/19 06:33:18 UTC

[07/12] incubator-mynewt-core git commit: bletiny - Increase shell line length (128 to 256).

bletiny - Increase shell line length (128 to 256).

This is required for the encryption procedure ("sec restart").  To
initiate this procedure, the user needs to specify the ediv, rand, and
16-byte ltk on the command line.


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

Branch: refs/heads/develop
Commit: c16e6c12cfd50073c89ec64f3e8e775c51f9af3a
Parents: e404f06
Author: Christopher Collins <cc...@apache.org>
Authored: Wed May 18 16:08:33 2016 -0700
Committer: Christopher Collins <cc...@apache.org>
Committed: Wed May 18 16:08:33 2016 -0700

----------------------------------------------------------------------
 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/c16e6c12/apps/bletiny/src/main.c
----------------------------------------------------------------------
diff --git a/apps/bletiny/src/main.c b/apps/bletiny/src/main.c
index 7e84792..d3d27f8 100755
--- a/apps/bletiny/src/main.c
+++ b/apps/bletiny/src/main.c
@@ -55,7 +55,7 @@
 #define BLE_LL_TASK_PRI         (OS_TASK_PRI_HIGHEST)
 
 #define SHELL_TASK_PRIO         (3)
-#define SHELL_MAX_INPUT_LEN     (128)
+#define SHELL_MAX_INPUT_LEN     (256)
 #define SHELL_TASK_STACK_SIZE   (OS_STACK_ALIGN(312))
 static bssnz_t os_stack_t shell_stack[SHELL_TASK_STACK_SIZE];