CONFIG_BT_LIM_ADV_TIMEOUT¶
Timeout for limited advertising in 1s units
Type: int
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.
Default¶
- 30 
Kconfig definition¶
At <Zephyr Subsystem>/bluetooth/Kconfig.adv:7
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:9 → <Zephyr Subsystem>/bluetooth/Kconfig:110
Menu path: (Top) → Sub Systems and OS Services → Bluetooth
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.)