From ce29baa0efe999e18f48295a5ea805f32a1908d4 Mon Sep 17 00:00:00 2001 From: Erwan Gouriou Date: Wed, 26 Aug 2020 09:06:15 +0200 Subject: [PATCH] drivers/bluetooth: ipm_stm32wb.c: Increase RX thread stack size Stack overflows where seen in heavy logging conditions since printk modifications that increased "slightly" RAM consumption (973487fdad1b72e7aaeb95c0330b9fa4a5831026). Increase RX Thread stack size to avoid these overflows. Signed-off-by: Erwan Gouriou --- drivers/bluetooth/hci/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bluetooth/hci/Kconfig b/drivers/bluetooth/hci/Kconfig index 290130b5062..0b3981844b3 100644 --- a/drivers/bluetooth/hci/Kconfig +++ b/drivers/bluetooth/hci/Kconfig @@ -102,7 +102,7 @@ endif # BT_SPI config BT_STM32_IPM_RX_STACK_SIZE int "STM32 IPM stack size for RX thread" depends on BT_STM32_IPM - default 256 + default 512 config BT_RPMSG_NRF53 bool "nRF53 configuration of RPMsg"