From b247ae94c103c986584cbba67e73dfe0847f568e Mon Sep 17 00:00:00 2001 From: "DESKTOP-GPE37UV\\THINKAPD" Date: Thu, 17 Nov 2022 09:58:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9ReturnAllWafer=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SicRT/Equipments/ReturnAllWafer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SicRT/Equipments/ReturnAllWafer.cs b/SicRT/Equipments/ReturnAllWafer.cs index 466cfd6..7311196 100644 --- a/SicRT/Equipments/ReturnAllWafer.cs +++ b/SicRT/Equipments/ReturnAllWafer.cs @@ -39,17 +39,17 @@ namespace SicRT.Modules { if (!_tmRobot.IsAvailable) { - EV.PostWarningLog("Scheduler", "can not return wafer, TmRobort is not available!"); + EV.PostWarningLog("Scheduler", "can not return wafer, TmRobot is not available!"); return Result.FAIL; } if (!_trayRobot.IsAvailable) { - EV.PostWarningLog("Scheduler", "can not return wafer, TrayRobort is not available!"); + EV.PostWarningLog("Scheduler", "can not return wafer, TrayRobot is not available!"); return Result.FAIL; } if (!_waferRobot.IsAvailable) { - EV.PostWarningLog("Scheduler", "can not return wafer, WaferRobort is not available!"); + EV.PostWarningLog("Scheduler", "can not return wafer, WaferRobot is not available!"); return Result.FAIL; } if (!_load.IsAvailable) @@ -90,7 +90,7 @@ namespace SicRT.Modules //System.Diagnostics.Debug.Assert(!((_tmRobot.IsInPumping && _load.IsInPumping) || (_tmRobot.IsInPumping && _unload.IsInPumping) || (_unload.IsInPumping && _load.IsInPumping)), $"检测到 _load.IsInPumping :{_load.IsInPumping}, _unload.IsInPumping :{_unload.IsInPumping}, _tmRobot.IsInPumping :{_tmRobot.IsInPumping}"); _trigLoadUnLoadAllPumpAlarm.CLK = (_unload.IsInPumping && _load.IsInPumping); if (_trigLoadUnLoadAllPumpAlarm.Q) - EV.PostAlarmLog("Scheduler", $"检测到Load和UnLoad同时抽气,Load Task: {_load.GetTaskRunning()}, UnLoad Task: {_unload.GetTaskRunning()}"); + EV.PostAlarmLog("Scheduler", $"Detected that Load and UnLoad are pumping at the same time,Load Task: {_load.GetTaskRunning()}, UnLoad Task: {_unload.GetTaskRunning()}"); MonitorPMTask();