From e847a85605775903cf33231f489e17350d9f3dac Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 25 Jun 2014 14:49:07 +0300 Subject: [PATCH] android/hog: Fix using invalid range for external report --- android/hog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/hog.c b/android/hog.c index fccc992c5..c88fe9d13 100644 --- a/android/hog.c +++ b/android/hog.c @@ -297,7 +297,7 @@ static void external_report_reference_cb(guint8 status, const guint8 *pdu, DBG("External report reference read, external report characteristic " "UUID: 0x%04x", uuid16); bt_uuid16_create(&uuid, uuid16); - gatt_discover_char(hog->attrib, 0x00, 0xff, &uuid, + gatt_discover_char(hog->attrib, 0x0001, 0xffff, &uuid, external_service_char_cb, hog); } -- 2.47.3