From b1aa30c3c1fdc95b033ebda74ef4d81f5f4963ee Mon Sep 17 00:00:00 2001 From: Kai Date: Tue, 1 Sep 2020 21:40:22 -0700 Subject: [PATCH] Add configArray for Gear_Selection in google VHAL ConfigArray in Gear_Selection indicates the supported Gear Bug: 165942804 Test: build and check value in emulator Change-Id: I4567031a072edda550b671bc190934d24d5b5eba (cherry picked from commit a3b16c2d8e3354d848dfb18826ce89d2bdb6460e) --- .../vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/automotive/vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h b/automotive/vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h index 16e1bf7291..cf1840499c 100644 --- a/automotive/vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h +++ b/automotive/vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h @@ -688,6 +688,12 @@ const ConfigDeclaration kVehicleProperties[]{ .prop = toInt(VehicleProperty::GEAR_SELECTION), .access = VehiclePropertyAccess::READ, .changeMode = VehiclePropertyChangeMode::ON_CHANGE, + .configArray = {(int)VehicleGear::GEAR_PARK, + (int)VehicleGear::GEAR_NEUTRAL, + (int)VehicleGear::GEAR_REVERSE, + (int)VehicleGear::GEAR_DRIVE, (int)VehicleGear::GEAR_1, + (int)VehicleGear::GEAR_2, (int)VehicleGear::GEAR_3, + (int)VehicleGear::GEAR_4, (int)VehicleGear::GEAR_5}, }, .initialValue = {.int32Values = {toInt(VehicleGear::GEAR_PARK)}}},