:orphan: .. title:: BT_REMOTE_VERSION .. option:: CONFIG_BT_REMOTE_VERSION *Enable fetching of remote version* *Enable remote version information* Type: ``bool`` Help ==== .. code-block:: none 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 ==== .. code-block:: none 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 =================== (\ :option:`BT_CONN ` && \ :option:`BT_HCI ` && \ :option:`BT `) || (\ :option:`BT_REMOTE_INFO ` && \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`BT `) *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`BT_HCI_RAW ` Kconfig definitions =================== At ``/bluetooth/Kconfig:203`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. code-block:: kconfig 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 ``/bluetooth/host/Kconfig:252`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``/Kconfig:9`` → ``/bluetooth/Kconfig:306`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Enable application access to remote information .. code-block:: kconfig 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.)*