修改ReturnAllWafer中的拼写错误。

This commit is contained in:
DESKTOP-GPE37UV\THINKAPD 2022-11-17 09:58:59 +08:00
parent 8ab8587ee8
commit b247ae94c1
1 changed files with 4 additions and 4 deletions

View File

@ -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 timeLoad Task: {_load.GetTaskRunning()}, UnLoad Task: {_unload.GetTaskRunning()}");
MonitorPMTask();