diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-12-13 10:07:43 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-12-13 10:08:50 -0500 |
commit | 2fbe5f8c19863eb4ac013dce5546900592149a26 (patch) | |
tree | 6481d149d6eeba49ecec24e09a67fca41b0d0c40 /lib | |
parent | f7d640cb46e31c7edcb8a204c58dc7a142abf250 (diff) |
VSS 4.0 updates
Update affected signal names for changes in VSS 4.0.
Bug-AGL: SPEC-4970
Change-Id: Icb526c32ef5e7ce27bc0c07c8e5c6fad47484895
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vehicle-signals/vss_path.dart | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vehicle-signals/vss_path.dart b/lib/vehicle-signals/vss_path.dart index 822e304..de66b07 100644 --- a/lib/vehicle-signals/vss_path.dart +++ b/lib/vehicle-signals/vss_path.dart @@ -5,7 +5,7 @@ class VSSPath { static const String vehicleEngineSpeed = "Vehicle.Powertrain.CombustionEngine.Speed"; - static const String vehicleFuelLevel = "Vehicle.Powertrain.FuelSystem.Level"; + static const String vehicleFuelLevel = "Vehicle.Powertrain.FuelSystem.RelativeLevel"; static const String vehicleInsideTemperature = "Vehicle.Cabin.HVAC.AmbientAirTemperature"; @@ -26,10 +26,10 @@ class VSSPath { "Vehicle.Chassis.Axle.Row2.Wheel.Right.Tire.Pressure"; static const String vehicleIsChildLockActiveLeft = - "Vehicle.Cabin.Door.Row2.Left.IsChildLockActive"; + "Vehicle.Cabin.Door.Row2.DriverSide.IsChildLockActive"; static const String vehicleIsChildLockActiveRight = - "Vehicle.Cabin.Door.Row2.Right.IsChildLockActive"; + "Vehicle.Cabin.Door.Row2.PassengerSide.IsChildLockActive"; static const String vehicleCurrentLongitude = "Vehicle.CurrentLocation.Longitude"; |