From 4d98bc240a7bd86d9650c9206fe904c7eb0b5f2d Mon Sep 17 00:00:00 2001 From: "Mirlenko, Aleksandr" Date: Thu, 10 Jul 2025 12:11:41 +0200 Subject: [PATCH] samples: bluetooth: reduce RAM usage in hci_uart_async This sample is used in BLE conformance EBQ tests. Reduce RAM usage to make the sample work on nrf52810, nrf52811. Signed-off-by: Mirlenko, Aleksandr --- samples/bluetooth/hci_uart_async/prj.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/bluetooth/hci_uart_async/prj.conf b/samples/bluetooth/hci_uart_async/prj.conf index 1de1a46535e..9c5b79a9606 100644 --- a/samples/bluetooth/hci_uart_async/prj.conf +++ b/samples/bluetooth/hci_uart_async/prj.conf @@ -23,3 +23,6 @@ CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255 # in case it has a interfering default. Those same boards set this # config and it must be undone or the build will fail. CONFIG_UART_CONSOLE=n + +# reduce RAM usage +CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512