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

Commit 1a14f6a8 authored by Eva Chen's avatar Eva Chen
Browse files

Add new VENDOR VehicleArea to HAL layer.

Bug: 292141998
Test: atest CtsCarTestCases:CarPropertyConfigTest CtsCarTestCases:CarPropertyManagerTest
Change-Id: I454350e19064895f6019430b16d10b9ef4976836
parent 6e367dd8
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,
}