diff --git a/subsys/bluetooth/controller/Kconfig b/subsys/bluetooth/controller/Kconfig index 016a39c192c..9e1438db9b1 100644 --- a/subsys/bluetooth/controller/Kconfig +++ b/subsys/bluetooth/controller/Kconfig @@ -13,8 +13,8 @@ config BLUETOOTH_CONTROLLER_DATA_LENGTH config BLUETOOTH_CONTROLLER_RX_BUFFERS prompt "Number of Rx buffers" int - default 6 if BLUETOOTH_HCI_RAW default 1 + default 6 if BLUETOOTH_HCI_RAW range 1 10 help Set the number of Rx PDUs to be buffered in the controller. @@ -22,8 +22,8 @@ config BLUETOOTH_CONTROLLER_RX_BUFFERS config BLUETOOTH_CONTROLLER_TX_BUFFERS prompt "Number of Tx buffers" int - default 7 if BLUETOOTH_HCI_RAW default 1 + default 7 if BLUETOOTH_HCI_RAW range 1 10 help Set the number of Tx PDUs to be queued for transmission diff --git a/subsys/bluetooth/host/Kconfig b/subsys/bluetooth/host/Kconfig index e2c194a056a..50cdcb8137c 100644 --- a/subsys/bluetooth/host/Kconfig +++ b/subsys/bluetooth/host/Kconfig @@ -84,8 +84,8 @@ config BLUETOOTH_UART_TO_HOST_DEV_NAME if BLUETOOTH_CONN || BLUETOOTH_HCI_RAW config BLUETOOTH_ACL_IN_COUNT int "Number of incoming ACL data buffers" - default BLUETOOTH_CONTROLLER_RX_BUFFERS if BLUETOOTH_CONTROLLER default 6 + default BLUETOOTH_CONTROLLER_RX_BUFFERS if BLUETOOTH_CONTROLLER range 2 64 help Number of buffers available for incoming ACL data.