:orphan: .. title:: BT_REMOTE_VERSION .. option:: 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 =================== (\ :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 =================== .. highlight:: kconfig At ``subsys/bluetooth/Kconfig:203`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth .. parsed-literal:: config BT_REMOTE_VERSION bool "Enable fetching of remote version" default y if \ :option:`BT_HCI_RAW ` depends on \ :option:`BT_CONN ` && \ :option:`BT_HCI ` && \ :option:`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 ``subsys/bluetooth/host/Kconfig:317`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:9`` → ``subsys/bluetooth/Kconfig:239`` Menu path: (Top) → Sub Systems and OS Services → Bluetooth → Enable application access to remote information .. parsed-literal:: config BT_REMOTE_VERSION bool "Enable remote version information" depends on \ :option:`BT_REMOTE_INFO ` && \ :option:`BT_CONN ` && \ :option:`BT_HCI_HOST ` && \ :option:`BT_HCI ` && \ :option:`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.)*