From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> The code was not setting the expected discovery type for the next round when discovering is active. --- android/bluetooth.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/bluetooth.c b/android/bluetooth.c index 9d17faa..bc10b38 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -1292,8 +1292,11 @@ static void mgmt_discovering_event(uint16_t index, uint16_t length, adapter.cur_discovery_type = type; - if (ev->discovering) + if (ev->discovering) { + adapter.exp_discovery_type = adapter.le_scanning ? + SCAN_TYPE_LE : SCAN_TYPE_NONE; return; + } /* One shot notification about discovery stopped */ if (gatt_discovery_stopped_cb) { -- 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