From 9d326119c7330493a43701286c68fef4232a7d5c Mon Sep 17 00:00:00 2001 From: "SIC1016\\caipeilun" <905168240@qq.com> Date: Mon, 17 Aug 2026 22:12:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E6=97=B6=E5=B1=8F=E8=94=BD=E5=BC=80lo?= =?UTF-8?q?ad=E9=97=B8=E6=9D=BF=E9=98=80=E5=B9=B3=E8=A1=A1=E6=B0=94?= =?UTF-8?q?=E5=8E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SicModules/LLs/Routines/LoadLockServoToRoutine.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/App/Modules/SicModules/LLs/Routines/LoadLockServoToRoutine.cs b/App/Modules/SicModules/LLs/Routines/LoadLockServoToRoutine.cs index d631be1..681906b 100644 --- a/App/Modules/SicModules/LLs/Routines/LoadLockServoToRoutine.cs +++ b/App/Modules/SicModules/LLs/Routines/LoadLockServoToRoutine.cs @@ -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; //暂时屏蔽 }