From c3d35d89a39fce83535d784010503c406f9e4793 Mon Sep 17 00:00:00 2001 From: Alexandre Bourdiol Date: Mon, 10 May 2021 16:48:34 +0200 Subject: [PATCH] drivers: bluetooth: hci: increase spi_rx_stack Thread analyze: BT SPI RX : STACK: unused 216 usage 296 / 512 (57 %) Fixes #34601 Signed-off-by: Alexandre Bourdiol --- drivers/bluetooth/hci/spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bluetooth/hci/spi.c b/drivers/bluetooth/hci/spi.c index d7b5e8ea1b0..5983e58dff9 100644 --- a/drivers/bluetooth/hci/spi.c +++ b/drivers/bluetooth/hci/spi.c @@ -77,7 +77,7 @@ static K_SEM_DEFINE(sem_initialised, 0, 1); static K_SEM_DEFINE(sem_request, 0, 1); static K_SEM_DEFINE(sem_busy, 1, 1); -static K_KERNEL_STACK_DEFINE(spi_rx_stack, 256); +static K_KERNEL_STACK_DEFINE(spi_rx_stack, 512); static struct k_thread spi_rx_thread_data; #if defined(CONFIG_BT_DEBUG_HCI_DRIVER)