:orphan: .. title:: BT_CTLR_TX_RETRY_DISABLE .. option:: CONFIG_BT_CTLR_TX_RETRY_DISABLE *Disable Tx Retry* Type: ``bool`` Help ==== Avoid retransmission of a PDU if peer device Nack-ed a transmission in the current connection event, close the connection event so as to save current consumption on retries (in case peer has no buffers to receive new PDUs). Enabling this will lower power consumption, but increase transmission latencies by one connection interval as the next attempt to send a PDU would happen in the next connection event instead of repeated retries in the current connection event. Direct dependencies =================== \ :option:`BT_CONN ` && \ :option:`BT_LL_SW_SPLIT ` && \ :option:`BT_CTLR ` && \ :option:`BT_HCI ` && \ :option:`BT ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== .. highlight:: kconfig At ``subsys/bluetooth/controller/Kconfig.ll_sw_split:413`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:240`` → ``subsys/bluetooth/controller/Kconfig:594`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Bluetooth Controller → Advanced features .. parsed-literal:: config BT_CTLR_TX_RETRY_DISABLE bool "Disable Tx Retry" if \ :option:`BT_CTLR_ADVANCED_FEATURES ` depends on \ :option:`BT_CONN ` && \ :option:`BT_LL_SW_SPLIT ` && \ :option:`BT_CTLR ` && \ :option:`BT_HCI ` && \ :option:`BT ` help Avoid retransmission of a PDU if peer device Nack-ed a transmission in the current connection event, close the connection event so as to save current consumption on retries (in case peer has no buffers to receive new PDUs). Enabling this will lower power consumption, but increase transmission latencies by one connection interval as the next attempt to send a PDU would happen in the next connection event instead of repeated retries in the current connection event. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*