Merge branch 'develop' of http://112.124.35.216:65000/Sic-Software/MoS2 into develop

This commit is contained in:
hanqiangqiang 2026-08-18 10:21:31 +08:00
commit 7580afe92f

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; //暂时屏蔽
}