:orphan: .. title:: CONFIG_RTT_TX_RETRY_DELAY_MS .. kconfig:: CONFIG_RTT_TX_RETRY_DELAY_MS CONFIG_RTT_TX_RETRY_DELAY_MS ############################ *Delay between TX retries in milliseconds* Type: ``int`` Help ==== .. code-block:: none Sleep period between TX retry attempts. During RTT session, host pulls data periodically. Period starts from 1-2 milliseconds and can be increased if traffic on RTT increases (also from host to device). In case of heavy traffic data can be lost and it may be necessary to increase delay or number of retries. Direct dependencies =================== \ :kconfig:`RTT_CONSOLE ` && \ :kconfig:`CONSOLE ` *(Includes any dependencies from ifs and menus.)* Default ======= - 2 Kconfig definition ================== At ``/console/Kconfig:135`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Use RTT console .. code-block:: kconfig config RTT_TX_RETRY_DELAY_MS int "Delay between TX retries in milliseconds" default 2 depends on RTT_CONSOLE && CONSOLE help Sleep period between TX retry attempts. During RTT session, host pulls data periodically. Period starts from 1-2 milliseconds and can be increased if traffic on RTT increases (also from host to device). In case of heavy traffic data can be lost and it may be necessary to increase delay or number of retries. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*