:orphan: .. title:: BT_CTLR_RX_BUFFERS .. option:: CONFIG_BT_CTLR_RX_BUFFERS *Number of Rx buffers* Type: ``int`` Help ==== Set the number of Rx PDUs to be buffered in the controller. In a 7.5ms connection interval and 2M PHY, maximum 18 packets with L2CAP payload size of 1 byte can be received. Direct dependencies =================== \ :option:`BT_CTLR ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 6 if \ :option:`BT_HCI_RAW ` - 1 Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/controller/Kconfig:165`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:240`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Controller .. parsed-literal:: config BT_CTLR_RX_BUFFERS int "Number of Rx buffers" range 1 18 default 6 if \ :option:`BT_HCI_RAW ` default 1 depends on \ :option:`BT_CTLR ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Set the number of Rx PDUs to be buffered in the controller. In a 7.5ms connection interval and 2M PHY, maximum 18 packets with L2CAP payload size of 1 byte can be received. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*