From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- android/bluetooth.c | 11 +++++++++++ android/bluetooth.h | 2 ++ 2 files changed, 13 insertions(+) diff --git a/android/bluetooth.c b/android/bluetooth.c index a864326..fac2637 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -1386,6 +1386,17 @@ uint8_t bt_get_device_android_type(const bdaddr_t *addr) return get_device_android_type(dev); } +bool bt_is_device_le(const bdaddr_t *addr) +{ + struct device *dev; + + dev = find_device(addr); + if (!dev) + return false; + + return dev->le; +} + const char *bt_get_adapter_name(void) { return adapter.name; diff --git a/android/bluetooth.h b/android/bluetooth.h index b4a5f32..2409d46 100644 --- a/android/bluetooth.h +++ b/android/bluetooth.h @@ -54,6 +54,8 @@ bool bt_le_set_advertising(bool advertising, bt_le_set_advertising_done cb, void *user_data); uint8_t bt_get_device_android_type(const bdaddr_t *addr); +bool bt_is_device_le(const bdaddr_t *addr); + const char *bt_get_adapter_name(void); bool bt_device_is_bonded(const bdaddr_t *bdaddr); -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html