Commit eeddb878 by onuma

133エラーで10回リトライ機能を削除した。

parent d33d58a0
......@@ -67,17 +67,17 @@ public class BleManagerUtil {
// デバイスと離れて応答がなく、タイムアウトになる場合:8
// デバイスと接続が切れた場合のメッセージコード:19
if (status == 133 || status == 62 || status == 8 || status == 19) { // 接続失敗
if (status == 133) {
if (retryCount < RETRY_MAX) {
retryCount++;
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
@Override
public void run() {
mBluetoothGatt = mDevice.connectGatt(mContext, false, mGattcallback, TRANSPORT_LE);
}
}, 1500);
}
}
// if (status == 133) {
// if (retryCount < RETRY_MAX) {
// retryCount++;
// new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
// @Override
// public void run() {
// mBluetoothGatt = mDevice.connectGatt(mContext, false, mGattcallback, TRANSPORT_LE);
// }
// }, 1500);
// }
// }
runOnUiThread( new Runnable() {
@Override
public void run() {
......@@ -87,6 +87,8 @@ public class BleManagerUtil {
Logger.e(TAG,"onConnectionStateChange status = " + status);
}
});
gatt.disconnect();
gatt = null;
return;
}
......@@ -301,8 +303,10 @@ public class BleManagerUtil {
// 切断
public void disconnect() {
Logger.d(TAG,"disconnect");
if(mBluetoothGatt == null) {
Logger.d(TAG,"already gatt is null");
return;
}
......@@ -313,7 +317,7 @@ public class BleManagerUtil {
// ②「接続可能範囲から外れた切断」は、内部処理でmBluetoothGatt.disconnect()処理が実施される。
// 切断時のコールバックでmBluetoothGatt.connect()を呼んでおくと、接続可能範囲に入ったら自動接続する。
mBluetoothGatt.disconnect();
mBluetoothGatt.close();
//mBluetoothGatt.close();
mBluetoothGatt = null;
mListener = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment