Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2907,6 +2907,11 @@ public void onConnectionUpdated(@NonNull final BluetoothGatt gatt,
cpr.notifyConnectionPriorityChanged(gatt.getDevice(), interval, latency, timeout);
cpr.notifySuccess(gatt.getDevice());
}
if (serviceDiscoveryRequested) {
log(Log.VERBOSE, () -> "Discovering services...");
log(Log.DEBUG, () -> "gatt.discoverServices()");
bluetoothGatt.discoverServices();
}
} else if (status == 0x3b) { // HCI_ERR_UNACCEPT_CONN_INTERVAL
Log.e(TAG, "onConnectionUpdated received status: Unacceptable connection interval, " +
"interval: " + interval + ", latency: " + latency + ", timeout: " + timeout);
Expand Down