From d6513eeda3b1ea61098e43288f25584fe193de41 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 26 May 2017 11:08:06 +0200 Subject: [PATCH] Bluetooth: controller: Increase RX prio stack size Due to several changes in the way stacks are calculated, 320 bytes is no longer enough for the controller-only build. After measuring usages of up to 320 bytes (locally) and 376 (reported by Ricardo Salveti), the stack size is increased by 128 bytes, up to 448 bytes. Signed-off-by: Carles Cufi --- subsys/bluetooth/controller/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/Kconfig b/subsys/bluetooth/controller/Kconfig index 35006112409..467302ef2ec 100644 --- a/subsys/bluetooth/controller/Kconfig +++ b/subsys/bluetooth/controller/Kconfig @@ -116,7 +116,7 @@ config BLUETOOTH_CONTROLLER_SUBVERSION_NUMBER config BLUETOOTH_CONTROLLER_RX_PRIO_STACK_SIZE int - default 320 + default 448 comment "BLE Controller features"