diff options
author | Arati Gerdes <aratigerdes@google.com> | 2022-08-26 20:50:23 +0000 |
---|---|---|
committer | Arati Gerdes <aratigerdes@google.com> | 2022-08-29 17:11:12 +0000 |
commit | 76070519eb14aab8d247d37d4f708b86a8be91fe (patch) | |
tree | 685dedef8128f7188dfbb867ed042dcd63eaf59b /automotive | |
parent | 8e532e6d8213378115896037659a2b5793b64d27 (diff) |
DO NOT MERGE Add missing WINDOW_MOVE properties to DefaultConfig.h
Test: Built.
Bug: 239100623
Change-Id: I29e55f995a35bc3157f082be1b88a61495434b5c
Diffstat (limited to 'automotive')
-rw-r--r-- | automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h b/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h index 28f41fe66f..de3af64aba 100644 --- a/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h +++ b/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h @@ -1100,6 +1100,26 @@ const std::vector<ConfigDeclaration> kVehicleProperties = { .maxInt32Value = 10}}}, .initialValue = {.int32Values = {0}}}, + {.config = {.prop = toInt(VehicleProperty::WINDOW_MOVE), + .access = VehiclePropertyAccess::READ_WRITE, + .changeMode = VehiclePropertyChangeMode::ON_CHANGE, + .areaConfigs = {VehicleAreaConfig{.areaId = WINDOW_1_LEFT, + .minInt32Value = -1, + .maxInt32Value = 1}, + VehicleAreaConfig{.areaId = WINDOW_1_RIGHT, + .minInt32Value = -1, + .maxInt32Value = 1}, + VehicleAreaConfig{.areaId = WINDOW_2_LEFT, + .minInt32Value = -1, + .maxInt32Value = 1}, + VehicleAreaConfig{.areaId = WINDOW_2_RIGHT, + .minInt32Value = -1, + .maxInt32Value = 1}, + VehicleAreaConfig{.areaId = WINDOW_ROOF_TOP_1, + .minInt32Value = -1, + .maxInt32Value = 1}}}, + .initialValue = {.int32Values = {0}}}, + {.config = { .prop = WHEEL_TICK, |