Skip to content
Snippets Groups Projects
Commit 1475d0d2 authored by Sonny Sasaka's avatar Sonny Sasaka Committed by Gerrit Code Review
Browse files

Merge "Floss: Cancel discovery before BREDR pairing/connection"

parents e1148580 65ff9dac
No related branches found
No related tags found
No related merge requests found
......@@ -949,6 +949,10 @@ impl IBluetooth for Bluetooth {
}
let address = addr.unwrap();
// BREDR connection won't work when Inquiry is in progress.
self.cancel_discovery();
self.intf.lock().unwrap().create_bond(&address, transport) == 0
}
......@@ -1153,6 +1157,9 @@ impl IBluetooth for Bluetooth {
return false;
}
// BREDR connection won't work when Inquiry is in progress.
self.cancel_discovery();
// Check all remote uuids to see if they match enabled profiles and connect them.
let uuids = self.get_remote_uuids(device.clone());
for uuid in uuids.iter() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment