1.修改TMRobot Pick Buffer1层条件判断的BUG

This commit is contained in:
HCL 2024-01-05 14:43:27 +08:00
parent eae7ae90ec
commit 8b12920442
3 changed files with 13 additions and 3 deletions

View File

@ -2356,7 +2356,9 @@ namespace SicRT.Modules
&& _load.IsReadyForPlace(ModuleName.TMRobot, 0)
&& _load.NoTray(0)
&& _load.HasWafer(0)
&& _load.CheckWaferNeedProcess(0, ModuleName.PM1);
&& _load.CheckWaferNeedProcess(0, ModuleName.PM1)
&& _buffer.HasTrayAndNotExceedProcessCount(0)
&& _buffer.NoWafer(0);
if (canPick)
{
if (_buffer.IsReadyForPick(ModuleName.TMRobot, 0))
@ -2410,7 +2412,7 @@ namespace SicRT.Modules
//第二种情况:工艺开始时,如果Buffer中有Tray时,优先取Buffer中的Tray,而不是Cassette中Tray
canPick = _tmRobot.NoTray(0)
&& _buffer.HasTray(1)
&& _buffer.HasTrayAndNotExceedProcessCount(1)
&& _buffer.NoWafer(1)
&& _load.IsAvailable
&& _load.IsReadyForPlace(ModuleName.TMRobot, 0)

View File

@ -3,6 +3,14 @@
Auto-GE 自动通用版适用有EFEM设备
----
## Version 1.1.4.14
**2024-01-05**
- Bug修复
- 修改TMRobot Pick Buffer1层条件判断的BUG
- 新特性
- ReturnAll里Unload冷却时间定为300s
## Version 1.1.4.13
**2023-12-28**

View File

@ -54,5 +54,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.1.4.13")]
[assembly: AssemblyVersion("1.1.4.14")]
[assembly: AssemblyInformationalVersion("自动通用版有EFEM")]