Bluetooth: Increase stack size to default value

Make stack size the same size as in hello app. Current stack cannot
handle correctly security tests.

Change-Id: I5946c6bbcbc5079cefefddbb229b3205364b24d0
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2015-08-11 15:00:35 +03:00 committed by Anas Nashif
parent 18dccd7f64
commit 1fbaf56bc2
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ static const char *prompt;
static char *argv[ARGC_MAX + 1];
static size_t argc;
#define STACKSIZE 512
#define STACKSIZE 2000
static char __stack stack[STACKSIZE];
#define MAX_CMD_QUEUED 3