|
@@ -107,6 +107,9 @@ namespace Venus_RT.Modules.TM
|
|
|
}
|
|
|
private bool HomePump()
|
|
|
{
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
+ return true;
|
|
|
+
|
|
|
currentStepNo = 3;
|
|
|
if ((bool)_JetTM.TMPumpIsRunning)
|
|
|
{
|
|
@@ -117,6 +120,9 @@ namespace Venus_RT.Modules.TM
|
|
|
|
|
|
private bool CheckPumpReady()
|
|
|
{
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
+ return true;
|
|
|
+
|
|
|
if ((bool)_JetTM.TMPumpIsRunning)
|
|
|
{
|
|
|
return true;
|
|
@@ -128,12 +134,18 @@ namespace Venus_RT.Modules.TM
|
|
|
}
|
|
|
private bool HomePumpDown()
|
|
|
{
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
+ return true;
|
|
|
+
|
|
|
currentStepNo = 4;
|
|
|
return _pumpDownRoutine.Start() == RState.Running;
|
|
|
}
|
|
|
|
|
|
private bool CheckATMSwitchReady()
|
|
|
{
|
|
|
+ if (RouteManager.IsATMMode)
|
|
|
+ return true;
|
|
|
+
|
|
|
var status = _pumpDownRoutine.Monitor();
|
|
|
if (_JetTM.IsTMVac && status == RState.End)
|
|
|
{
|