:orphan: .. title:: CONFIG_BT_CONN_TX_MAX .. kconfig:: CONFIG_BT_CONN_TX_MAX CONFIG_BT_CONN_TX_MAX ##################### *Maximum number of pending TX buffers with a callback* Type: ``int`` Help ==== .. code-block:: none Maximum number of pending TX buffers that have an associated callback. Normally this can be left to the default value, which is equal to the number of TX buffers in the stack-internal pool. Direct dependencies =================== \ :kconfig:`BT_CONN ` && \ :kconfig:`BT_HCI_HOST ` && \ :kconfig:`BT_HCI ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - \ :kconfig:`BT_L2CAP_TX_BUF_COUNT ` Kconfig definition ================== At ``/bluetooth/host/Kconfig:199`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:174`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. code-block:: kconfig config BT_CONN_TX_MAX int "Maximum number of pending TX buffers with a callback" range BT_L2CAP_TX_BUF_COUNT 255 default BT_L2CAP_TX_BUF_COUNT depends on BT_CONN && BT_HCI_HOST && BT_HCI && BT help Maximum number of pending TX buffers that have an associated callback. Normally this can be left to the default value, which is equal to the number of TX buffers in the stack-internal pool. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*