diff options
author | Sven Gothel <[email protected]> | 2020-11-17 08:17:01 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-11-17 08:17:01 +0100 |
commit | 764443a8a0005025db28bb78f61e5cc21dfd3db0 (patch) | |
tree | 1a35d711faa704ed961e5cd4f521a944b53a5e89 /java | |
parent | 014f5ed5893a8aec231cc3df7c5b6dca57715aa9 (diff) |
AdapterStatusListener: Confine readiness criteria for deviceReady: ".. and ATT MTU size negotiated via connected GATT."
Diffstat (limited to 'java')
-rw-r--r-- | java/org/tinyb/AdapterStatusListener.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/org/tinyb/AdapterStatusListener.java b/java/org/tinyb/AdapterStatusListener.java index af9186eb..efb157af 100644 --- a/java/org/tinyb/AdapterStatusListener.java +++ b/java/org/tinyb/AdapterStatusListener.java @@ -126,7 +126,7 @@ public abstract class AdapterStatusListener { public void devicePairingState(final BluetoothDevice device, final SMPPairingState state, final PairingMode mode, final long timestamp) {} /** - * {@link BluetoothDevice} is ready for user (GATT) processing, i.e. already connected and optionally paired. + * {@link BluetoothDevice} is ready for user (GATT) processing, i.e. already connected, optionally paired and ATT MTU size negotiated via connected GATT. * @param device the device ready to use * @param timestamp the time in monotonic milliseconds when this event occurred. See BasicTypes::getCurrentMilliseconds(). */ |