samples: Bluetooth: Increase ISR_STACK_SIZE value
Split Link Layer implementation uses 80 bytes more ISR stack in comparison to Legacy Link Layer, hence increase the required ISR_STACK_SIZE for the BBC micro:bit and other nRF51 QFAA SoC based mesh and mesh_demo samples. Fixes #20414. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
e18d1b6a46
commit
0b878020f2
|
@ -1,4 +1,5 @@
|
|||
#CONFIG_INIT_STACKS=y
|
||||
CONFIG_ISR_STACK_SIZE=768
|
||||
CONFIG_MAIN_STACK_SIZE=320
|
||||
CONFIG_IDLE_STACK_SIZE=128
|
||||
CONFIG_DISPLAY=y
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
CONFIG_INIT_STACKS=y
|
||||
CONFIG_ISR_STACK_SIZE=512
|
||||
CONFIG_MAIN_STACK_SIZE=512
|
||||
|
||||
CONFIG_BT=y
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
CONFIG_INIT_STACKS=y
|
||||
CONFIG_ISR_STACK_SIZE=768
|
||||
CONFIG_MAIN_STACK_SIZE=512
|
||||
CONFIG_DISPLAY=y
|
||||
CONFIG_MICROBIT_DISPLAY=y
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#CONFIG_INIT_STACKS=y
|
||||
CONFIG_ISR_STACK_SIZE=768
|
||||
CONFIG_MAIN_STACK_SIZE=512
|
||||
#CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1280
|
||||
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
|
||||
|
|
Loading…
Reference in a new issue