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

Commit d34191aa authored by Mike J. Chen's avatar Mike J. Chen
Browse files

BluetoothInputDevice: make REPORT_TYPE values match hal



So we don't have to do conversion when using getReport/setReport
and can pass the value to the BT HAL directly.

Change-Id: I8d4af72d2e040d43cc9ff8a8cddfbe6cc8cfdb9a
Signed-off-by: default avatarMike J. Chen <mjchen@google.com>
parent aa07cb29
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -130,17 +130,17 @@ public final class BluetoothInputDevice implements BluetoothProfile {
    /**
     * @hide
     */
    public static final byte REPORT_TYPE_INPUT = 0;
    public static final byte REPORT_TYPE_INPUT = 1;

    /**
     * @hide
     */
    public static final byte REPORT_TYPE_OUTPUT = 1;
    public static final byte REPORT_TYPE_OUTPUT = 2;

    /**
     * @hide
     */
    public static final byte REPORT_TYPE_FEATURE = 2;
    public static final byte REPORT_TYPE_FEATURE = 3;

    /**
     * @hide