diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-11-22 16:27:12 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-11-22 16:28:48 -0500 |
commit | 6c016a39fb993165d0c103691ecf5333e09ef438 (patch) | |
tree | 646b666f38c428ecdccfe5fd5a7d6c74676df03f | |
parent | 6532dfae339faa2f7fa2d06519bf2ca5c6c77b4c (diff) |
VSS 4.0 updates
Remove unused VSS signal variables, some of which were using old
names. This should avoid future confusion.
Bug-AGL: SPEC-4970
Change-Id: I8f4bdf2e5a130d8c920f8a18cca345b89d07becf
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
-rw-r--r-- | lib/vehicle-signals/vss_path.dart | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/vehicle-signals/vss_path.dart b/lib/vehicle-signals/vss_path.dart index 3bfc9c1..d1d8f1f 100644 --- a/lib/vehicle-signals/vss_path.dart +++ b/lib/vehicle-signals/vss_path.dart @@ -1,44 +1,11 @@ // SPDX-License-Identifier: Apache-2.0 class VSSPath { - static const String vehicleSpeed = "Vehicle.Speed"; - - static const String vehicleEngineRPM = - "Vehicle.Powertrain.CombustionEngine.Speed"; - - static const String vehicleFuelLevel = "Vehicle.Powertrain.FuelSystem.Level"; - static const String vehicleInsideTemperature = "Vehicle.Cabin.HVAC.AmbientAirTemperature"; static const String vehicleOutsideTemperature = "Vehicle.Exterior.AirTemperature"; - static const String vehicleFrontLeftTire = - "Vehicle.Chassis.Axle.Row1.Wheel.Left.Tire.Pressure"; - - static const String vehicleFrontRightTire = - "Vehicle.Chassis.Axle.Row1.Wheel.Right.Tire.Pressure"; - - static const String vehicleRearLeftTire = - "Vehicle.Chassis.Axle.Row2.Wheel.Left.Tire.Pressure"; - - static const String vehicleRearRightTire = - "Vehicle.Chassis.Axle.Row2.Wheel.Right.Tire.Pressure"; - - static const String vehicleIsChildLockActiveLeft = - "Vehicle.Cabin.Door.Row2.Left.IsChildLockActive"; - - static const String vehicleIsChildLockActiveRight = - "Vehicle.Cabin.Door.Row2.Right.IsChildLockActive"; - - static const String vehicleCurrentLongitude = - "Vehicle.CurrentLocation.Longitude"; - - static const String vehicleCurrentLatitude = - "Vehicle.CurrentLocation.Latitude"; - - static const String vehicleFuelRate = "Vehicle.OBD.FuelRate"; - static const String vehicleMediaVolume = "Vehicle.Cabin.Infotainment.Media.Volume"; } |