16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 17:29:18 +02:00

driving aid brake state tweak

This commit is contained in:
tmj-fstate
2020-06-22 22:55:46 +02:00
parent 0af9e84453
commit 469c797966
3 changed files with 2 additions and 4 deletions

View File

@@ -1497,7 +1497,6 @@ public:
bool StLinSwitchOff{ false }; // state of the button forcing motor connectors open
bool ResistorsFlag = false; /*!o jazda rezystorowa*/
double RventRot = 0.0; /*!s obroty wentylatorow rozruchowych*/
bool UnBrake = false; /*w EZT - nacisniete odhamowywanie*/
double PantographVoltage{ 0.0 }; // voltage supplied to pantographs
double PantPress = 0.0; /*Cisnienie w zbiornikach pantografow*/
bool PantPressSwitchActive{ false }; // state of the pantograph pressure switch. gets primed at defined pressure level in pantograph air system

View File

@@ -3650,7 +3650,6 @@ bool TMoverParameters::IncLocalBrakeLevel(float const CtrlSpeed)
}
else
IBL = false;
UnBrake = true;
return IBL;
}
@@ -3669,7 +3668,6 @@ bool TMoverParameters::DecLocalBrakeLevel(float const CtrlSpeed)
}
else
DBL = false;
UnBrake = true;
return DBL;
}