From 6c016a39fb993165d0c103691ecf5333e09ef438 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 22 Nov 2023 16:27:12 -0500 Subject: 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 --- lib/vehicle-signals/vss_path.dart | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'lib/vehicle-signals/vss_path.dart') 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"; } -- cgit 1.2.3-korg