CONFIG_BT_REMOTE_VERSION¶
Enable fetching of remote version
Enable remote version information
Type: bool
Help¶
Enable this to get access to the remote version in the Controller and
in the Host through bt_conn_get_info(). The fields in question can
be then found in the bt_conn_info struct.
Help¶
Enable this to get access to the remote version through
the remote_version_available callback. The host will automatically ask
the remote device after the connection has been established.
Direct dependencies¶
(BT_CONN && BT_HCI && BT) || (BT_REMOTE_INFO && BT_CONN && BT_HCI_HOST && BT_HCI && BT)
(Includes any dependencies from ifs and menus.)
Default¶
- y if - BT_HCI_RAW
Kconfig definitions¶
At <Zephyr Subsystem>/bluetooth/Kconfig:150
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:9
Menu path: (Top) → Sub Systems and OS Services → Bluetooth
config BT_REMOTE_VERSION
    bool "Enable fetching of remote version"
    default y if BT_HCI_RAW
    depends on BT_CONN && BT_HCI && BT
    help
      Enable this to get access to the remote version in the Controller and
      in the Host through bt_conn_get_info(). The fields in question can
      be then found in the bt_conn_info struct.
At <Zephyr Subsystem>/bluetooth/host/Kconfig:256
Included via Kconfig:8 → Kconfig.zephyr:44 → <Zephyr Subsystem>/Kconfig:9 → <Zephyr Subsystem>/bluetooth/Kconfig:174
Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Enable application access to remote information
config BT_REMOTE_VERSION
    bool "Enable remote version information"
    depends on BT_REMOTE_INFO && BT_CONN && BT_HCI_HOST && BT_HCI && BT
    help
      Enable this to get access to the remote version through
      the remote_version_available callback. The host will automatically ask
      the remote device after the connection has been established.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)