|
@@ -25,6 +25,7 @@ using MECF.Framework.Common.Beckhoff.Station;
|
|
|
using System.Runtime.Remoting.Contexts;
|
|
|
using System.Windows.Markup;
|
|
|
using CyberX8_RT.Modules.LPs;
|
|
|
+using MECF.Framework.Common.ToolLayout;
|
|
|
|
|
|
namespace CyberX8_RT.Devices.EFEM
|
|
|
{
|
|
@@ -63,7 +64,7 @@ namespace CyberX8_RT.Devices.EFEM
|
|
|
}
|
|
|
else if (_busyTrig.M)
|
|
|
{
|
|
|
- int timeOut = 30000;
|
|
|
+ int timeOut = 20000;
|
|
|
if (_busyWatch.ElapsedMilliseconds > timeOut)
|
|
|
{
|
|
|
_busyWatch.Stop();
|
|
@@ -844,19 +845,34 @@ namespace CyberX8_RT.Devices.EFEM
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
+ if(!msg.StartsWith("MAP"))
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- string[] sWaferInfo = msg.Split(' ');
|
|
|
+ string[] sWaferInfo = msg.Split(new char[] { ' ', '\r', '\n' });
|
|
|
if (sWaferInfo.Length <= 2)
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
int slotMap = SC.GetValue<int>("EFEM.LoadPort.SlotNumber");
|
|
|
+
|
|
|
+ if (ModuleHelper.IsDummy(_currentMessage.Module))
|
|
|
+ {
|
|
|
+ DummyCassetteItem item = DummyCasseteItemManager.Instance.GetDummyCassetteItem(_currentMessage.Module.ToString());
|
|
|
+ if (item != null)
|
|
|
+ {
|
|
|
+ slotMap = item.MaxNumberOfSlots;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
//Map 结果(1 1 1 1 1 1 1 ...0)
|
|
|
int startIndex = 1;
|
|
|
int count = slotMap >= sWaferInfo.Length-startIndex? sWaferInfo.Length-startIndex : slotMap;
|
|
|
bool result = true;
|
|
|
|
|
|
- for (int index = startIndex; index < count; index++)
|
|
|
+ for (int index = startIndex; index <= count; index++)
|
|
|
{
|
|
|
int waferState = int.Parse(sWaferInfo[index]);
|
|
|
//合理的映射到内部支持的叠片/交叉片
|
|
@@ -923,7 +939,7 @@ namespace CyberX8_RT.Devices.EFEM
|
|
|
else if (ModuleHelper.IsDummy(moduleName))
|
|
|
{
|
|
|
DummyDevice dummyDevice = Singleton<RouteManager>.Instance.EFEM.GetDummyDevice(moduleName - ModuleName.Dummy1);
|
|
|
- if (dummyDevice.HasCassette)
|
|
|
+ if (!dummyDevice.HasCassette)
|
|
|
{
|
|
|
LOG.WriteLog(eEvent.ERR_EFEM_COMMON_FAILED, Module.ToString(), $"{moduleName} does not have cassete.");
|
|
|
return 0;
|