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

Commit 95e88820 authored by Eva Chen's avatar Eva Chen Committed by Android (Google) Code Review
Browse files

Merge "Add new VENDOR VehicleArea to HAL layer." into main

parents 5feeb3a5 1a14f6a8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -40,5 +40,6 @@ enum VehicleArea {
  SEAT = 0x05000000,
  DOOR = 0x06000000,
  WHEEL = 0x07000000,
  VENDOR = 0x08000000,
  MASK = 0x0f000000,
}
+5 −0
Original line number Diff line number Diff line
@@ -49,6 +49,11 @@ enum VehicleArea {
    DOOR = 0x06000000,
    /** WHEEL maps to enum VehicleAreaWheel */
    WHEEL = 0x07000000,
    /**
     * A property with the VENDOR vehicle area contains area IDs that are vendor defined. Each area
     * ID within this area type must be unique with no overlapping bits set.
     */
    VENDOR = 0x08000000,

    MASK = 0x0f000000,
}