Reduce blocking time when waiting for CharacteristicWrite queue to clear

up.

Bug: 200073240
Test: manual build
Change-Id: I62070a5789809c363dba3cb4f0d007d17e3a9ef8
This commit is contained in:
Johanna Ye
2021-12-23 20:13:36 +01:00
committed by Rahul Sabnis
parent 8c4a3070cd
commit ff0f688ca4

View File

@@ -87,7 +87,7 @@ public final class BluetoothGatt implements BluetoothProfile {
private static final int CONN_STATE_CLOSED = 4;
private static final int WRITE_CHARACTERISTIC_MAX_RETRIES = 5;
private static final int WRITE_CHARACTERISTIC_TIME_TO_WAIT = 1000; // milliseconds
private static final int WRITE_CHARACTERISTIC_TIME_TO_WAIT = 10; // milliseconds
private List<BluetoothGattService> mServices;