From ee2cb83587a08259158b10712f98d6669198c33f Mon Sep 17 00:00:00 2001 From: Maik Brand Date: Mon, 14 Aug 2023 09:31:02 +0200 Subject: [PATCH] Bluetooth: Fix LLPM k-config dependency issue BT_CTLR_SDC_LLPM selects BT_CONN_PARAM_ANY which is a host only option. Do not select it if building without the Host Signed-off-by: Maik Brand --- 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 a9ad91fe70e0..0748282c8f09 100644 --- a/subsys/bluetooth/controller/Kconfig +++ b/subsys/bluetooth/controller/Kconfig @@ -103,7 +103,7 @@ config SYSTEM_WORKQUEUE_STACK_SIZE config BT_CTLR_SDC_LLPM bool "Enable Low Latency Packet Mode support" depends on SOC_SERIES_NRF52X - select BT_CONN_PARAM_ANY + select BT_CONN_PARAM_ANY if !BT_HCI_RAW help Low Latency Packet Mode (LLPM) is a Nordic proprietary addition which lets the application use connection intervals down to 1 ms.