Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d0692aa authored by Matthew Xie's avatar Matthew Xie
Browse files

Change GATT_FAILURE from 0 to 0x101

GATT_FAILURE 0 clashes with GATT_SUCCESS. For now, they represent different
kind of faiure. One for Gatt operation, one for Gatt registration. But we
should separate them as good practice.
bug 9109238

Change-Id: I686bb6004bc8831aa3e3bbffe2f7c8e24412e3c3
parent c3ef4fc0
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -70,9 +70,6 @@ public final class BluetoothGatt implements BluetoothProfile {

    private List<BluetoothGattService> mServices;

    /** A GATT operation failed */
    public static final int GATT_FAILURE = 0;

    /** A GATT operation completed successfully */
    public static final int GATT_SUCCESS = 0;

@@ -97,6 +94,9 @@ public final class BluetoothGatt implements BluetoothProfile {
    /** A write operation exceeds the maximum length of the attribute */
    public static final int GATT_INVALID_ATTRIBUTE_LENGTH = 0xd;

    /** A GATT operation failed, errors other than the above */
    public static final int GATT_FAILURE = 0x101;

    /**
     * No authentication required.
     * @hide