|
@@ -39,6 +39,15 @@ namespace Venus_RT.Modules
|
|
|
private R_TRIG _wafer_arrive_trig = new R_TRIG();
|
|
|
private MovingStatus _moving_status = MovingStatus.Idle;
|
|
|
|
|
|
+ private int _tmRobotSingleArmOption = 0;
|
|
|
+ private int _efemRobotSingleArmOption = 0;
|
|
|
+
|
|
|
+ public ManualTransfer()
|
|
|
+ {
|
|
|
+ _tmRobotSingleArmOption = SC.GetValue<int>("TM.SingleArmOption");
|
|
|
+ _efemRobotSingleArmOption = SC.GetValue<int>("EFEM.SingleArmOption");
|
|
|
+ }
|
|
|
+
|
|
|
public RState Start(params object[] objs)
|
|
|
{
|
|
|
// RESET
|
|
@@ -53,7 +62,13 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
_wafer_id = WaferManager.Instance.GetWafer(_move_item.SourceModule, _move_item.SourceSlot).InnerId;
|
|
|
|
|
|
- if(IsCrossTransfer(_move_item))
|
|
|
+ if (!CheckSingleArmOption(_move_item.DestinationModule, _move_item.DestinationSlot))
|
|
|
+ return RState.Failed;
|
|
|
+
|
|
|
+ if (!CheckSingleArmOption(_move_item.SourceModule, _move_item.SourceSlot))
|
|
|
+ return RState.Failed;
|
|
|
+
|
|
|
+ if (IsCrossTransfer(_move_item))
|
|
|
{
|
|
|
var slot = SelectLLFreeSlot();
|
|
|
if (slot.Module == ModuleName.System)
|
|
@@ -66,7 +81,6 @@ namespace Venus_RT.Modules
|
|
|
if(ModuleHelper.IsEFEMRobot(_move_item.DestinationModule))
|
|
|
{
|
|
|
_moveTaskQueue.Enqueue(new MoveItem(slot.Module, slot.Slot, _move_item.DestinationModule, _move_item.DestinationSlot, (Hand)_move_item.DestinationSlot));
|
|
|
-
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -289,6 +303,33 @@ namespace Venus_RT.Modules
|
|
|
|
|
|
return RState.Running;
|
|
|
}
|
|
|
+
|
|
|
+ private bool CheckSingleArmOption(ModuleName robot, int slot)
|
|
|
+ {
|
|
|
+ if(ModuleHelper.IsTMRobot(robot))
|
|
|
+ {
|
|
|
+ if (_tmRobotSingleArmOption != 0 && _tmRobotSingleArmOption != slot + 1)
|
|
|
+ {
|
|
|
+ LOG.Write(eEvent.ERR_ROUTER, ModuleName.TMRobot, $"Cannot move the wafer as TM Robot {(Hand)slot} is disabled.");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(ModuleHelper.IsEFEMRobot(robot))
|
|
|
+ {
|
|
|
+ if (_efemRobotSingleArmOption != 0 && _efemRobotSingleArmOption != slot + 1)
|
|
|
+ {
|
|
|
+ LOG.Write(eEvent.ERR_ROUTER, ModuleName.EfemRobot, $"Cannot move the wafer as EFEM Robot {(Hand)slot} is disabled.");
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int GetSingleArmOption(ModuleName robot)
|
|
|
+ {
|
|
|
+ return ModuleHelper.IsTMRobot(robot) ? _tmRobotSingleArmOption : _efemRobotSingleArmOption;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
public class ReturnAllWafer : IRoutine
|
|
@@ -310,19 +351,26 @@ namespace Venus_RT.Modules
|
|
|
{
|
|
|
if (ModuleHelper.IsInstalled(mod) && Singleton<TransferModule>.Instance.GetScheduler(mod).IsAvailable)
|
|
|
{
|
|
|
- PushWaferToReturnQueqe(mod, 0);
|
|
|
if (ModuleHelper.IsEFEMRobot(mod) || ModuleHelper.IsTMRobot(mod))
|
|
|
{
|
|
|
- PushWaferToReturnQueqe(mod, 1);
|
|
|
+ if (_manualTransfer.GetSingleArmOption(mod) != 2)
|
|
|
+ PushWaferToReturnQueqe(mod, 0);
|
|
|
+
|
|
|
+ if (_manualTransfer.GetSingleArmOption(mod) != 1)
|
|
|
+ PushWaferToReturnQueqe(mod, 1);
|
|
|
}
|
|
|
else if (ModuleHelper.IsLoadLock(mod))
|
|
|
{
|
|
|
int nSlotNumber = SC.GetValue<int>($"{mod}.SlotNumber");
|
|
|
- for (int i = 1; i < nSlotNumber; i++)
|
|
|
+ for (int i = 0; i < nSlotNumber; i++)
|
|
|
{
|
|
|
PushWaferToReturnQueqe(mod, i);
|
|
|
}
|
|
|
}
|
|
|
+ else
|
|
|
+ {
|
|
|
+ PushWaferToReturnQueqe(mod, 0);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|