:orphan: .. title:: CONFIG_BT_LIM_ADV_TIMEOUT .. kconfig:: CONFIG_BT_LIM_ADV_TIMEOUT CONFIG_BT_LIM_ADV_TIMEOUT ######################### *Timeout for limited advertising in 1s units* Type: ``int`` Help ==== .. code-block:: none After this timeout is reached, advertisement with BT_LE_AD_LIMITED flag set shall be terminated. As per BT Core Spec 5.2, Vol 3, Part C, Appendix A (NORMATIVE): TIMERS AND CONSTANTS it's required to be no more than 180s. Direct dependencies =================== \ :kconfig:`BT_HCI ` && \ :kconfig:`BT ` *(Includes any dependencies from ifs and menus.)* Default ======= - 30 Kconfig definition ================== At ``/bluetooth/Kconfig.adv:7`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:110`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. code-block:: kconfig config BT_LIM_ADV_TIMEOUT int "Timeout for limited advertising in 1s units" range 1 180 default 30 depends on BT_HCI && BT help After this timeout is reached, advertisement with BT_LE_AD_LIMITED flag set shall be terminated. As per BT Core Spec 5.2, Vol 3, Part C, Appendix A (NORMATIVE): TIMERS AND CONSTANTS it's required to be no more than 180s. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*