wireless/bluetooth/nimble: make stacksize configurable

This commit is contained in:
raiden00pl 2021-12-18 18:01:18 +01:00 committed by Xiang Xiao
parent 82646b9564
commit 2db90a8be5
2 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,11 @@ config NIMBLE
host-layer stack.
if NIMBLE
config NIMBLE_REF
config NIMBLE_STACKSIZE
int "nimble stack size"
default DEFAULT_TASK_STACKSIZE
config NIMBLE_REF
string "Version"
default "cd8ab38c3da91b71dd428979153a408f38d3b02e"
---help---

View File

@ -21,7 +21,7 @@
include $(APPDIR)/Make.defs
PRIORITY = 255
STACKSIZE = 16384
STACKSIZE = $(CONFIG_NIMBLE_STACKSIZE)
NIMBLE_UNPACKDIR = mynewt-nimble
NIMBLE_ROOT = $(APPDIR)/wireless/bluetooth/nimble/$(NIMBLE_UNPACKDIR)