暂时屏蔽开load闸板阀平衡气压

This commit is contained in:
SIC1016\caipeilun 2026-08-17 22:12:45 +08:00
parent 927df8cd61
commit 9d326119c7

View File

@ -83,7 +83,7 @@ namespace SicModules.LLs.Routines
if (!LoadLockDevice.CheckLidClose())
{
EV.PostAlarmLog(Module, $"Can not pump, door is open");
EV.PostAlarmLog(Module, $"Can not balance pressure, door is open");
return Result.FAIL;
}
@ -100,8 +100,8 @@ namespace SicModules.LLs.Routines
}
_needPump = LoadLockDevice.ChamberPressure > _targetPressure;
Notify("Start");
return Result.RUN;
Notify($"TargetPressure is {_targetPressure} LoadPressure is {LoadLockDevice.ChamberPressure}, Start");
return Result.DONE; //暂时屏蔽
}