diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2022-07-19 02:20:05 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2022-07-19 02:20:05 +0000 |
commit | cc4486f9742b14bb5e16c4ee40b64e021b7c2802 (patch) | |
tree | 0d43d0584c5325756c56c6eebe8f1f9531cbff72 | |
parent | 60b03fb52f3c99c4151cdb5cf909367fcf130c68 (diff) | |
parent | cdc036a685bc467562ad8b2472d5336e4714c23b (diff) |
Merge "Fixed VEHICLE_CURB_WEIGHT property" into tm-qpr-dev
-rw-r--r-- | automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h b/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h index 4e284e8bd0..9d7294e412 100644 --- a/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h +++ b/automotive/vehicle/aidl/impl/default_config/include/DefaultConfig.h @@ -363,8 +363,9 @@ const std::vector<ConfigDeclaration> kVehicleProperties = { .prop = toInt(VehicleProperty::VEHICLE_CURB_WEIGHT), .access = VehiclePropertyAccess::READ, .changeMode = VehiclePropertyChangeMode::STATIC, + .configArray = {/*gross weight kg=*/2948}, }, - .initialValue = {.int32Values = {30}}}, + .initialValue = {.int32Values = {2211 /*kg*/}}}, {.config = { |