From 6662fe2fa2cda706e7256ffd8e6827f31210249d Mon Sep 17 00:00:00 2001 From: "harald.martini@student.tugraz.at" <harald.martini@student.tugraz.at> Date: Thu, 20 May 2021 13:02:04 +0200 Subject: [PATCH] Updated Vehicle Writer --- .../Util/XML/Implementation/ComponentWriter/XMLVehicleWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VECTO3GUI2020/Util/XML/Implementation/ComponentWriter/XMLVehicleWriter.cs b/VECTO3GUI2020/Util/XML/Implementation/ComponentWriter/XMLVehicleWriter.cs index 4cfda282a5..1d637e51d3 100644 --- a/VECTO3GUI2020/Util/XML/Implementation/ComponentWriter/XMLVehicleWriter.cs +++ b/VECTO3GUI2020/Util/XML/Implementation/ComponentWriter/XMLVehicleWriter.cs @@ -271,7 +271,7 @@ namespace VECTO3GUI2020.Util.XML.Implementation aDASElement.Add(new XElement(adasNamespace + XMLNames.Vehicle_ADAS_EcoRollWithEngineStopStart, ecoRollWithEngineStop)); aDASElement.Add(new XElement(adasNamespace + XMLNames.Vehicle_ADAS_PCC, _inputData.ADAS.PredictiveCruiseControl.ToXMLFormat())); - aDASElement.Add(new XElement(adasNamespace + XMLNames.Vehicle_ADAS_ATEcoRollReleaseLockupClutch, _inputData.ADAS?.ATEcoRollReleaseLockupClutch )); + aDASElement.Add(new XElement(adasNamespace + XMLNames.Bus_ADAS_APTEcoRollReleaseLockupClutch, _inputData.ADAS?.ATEcoRollReleaseLockupClutch )); } _Xelement.DescendantsAndSelf().Where(e => e.Value.IsNullOrEmpty()).Remove(); -- GitLab