|
@@ -50,17 +50,19 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
private const string CURRENT_STATION_LIST = "CurrentStationList";
|
|
|
private const string WAFER_PRESENT = "WaferPresent";
|
|
|
private const string SIDE_A = "SideA";
|
|
|
+ private const string SIDE_B = "SideB";
|
|
|
#endregion
|
|
|
|
|
|
#region 内部变量
|
|
|
private LoaderEntity _loaderEntity;
|
|
|
private JetAxisBase _flipAxis;
|
|
|
private JetAxisBase _rotationAxis;
|
|
|
- private LoaderSideDevice _loaderSide;
|
|
|
+ private LoaderSideDevice _loaderSideDevice;
|
|
|
private PufVacuum _vacuum;
|
|
|
private PufDistanceSensor _distanceSensor;
|
|
|
private PufPlaceToLoaderRoutine _placeToLoaderRoutine;
|
|
|
private PufChuckRoutine _chuckRoutine;
|
|
|
+ private string _loaderSide;
|
|
|
#endregion
|
|
|
|
|
|
/// <summary>
|
|
@@ -96,7 +98,7 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
.Run(SwapStep.SideAVacuumOn, SideAVacuumOn, CheckSideAWaferPresent, 5000)
|
|
|
.Wait(SwapStep.StickDistanceCheck, CheckStickDistanceStatus, 1000)
|
|
|
.Run(SwapStep.ChuckIn, () => { return _chuckRoutine.Start(false) == RState.Running; }, NullFun, 100)
|
|
|
- .WaitWithStopCondition(SwapStep.CheckChuckOut, () => CommonFunction.CheckRoutineEndState(_chuckRoutine),
|
|
|
+ .WaitWithStopCondition(SwapStep.CheckChuckIn, () => CommonFunction.CheckRoutineEndState(_chuckRoutine),
|
|
|
() => { return CheckChuckRoutineStopStatus(false, 1); })
|
|
|
.Run(SwapStep.RotationFlip, () => { return AxisGotoPosition(_rotationAxis,"Flip",1); }, _delay_1ms)
|
|
|
.WaitWithStopCondition(SwapStep.WaitRotationFlip, () => { return _rotationAxis.Status == RState.End; },
|
|
@@ -136,7 +138,7 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
if(loaderEntity!=null)
|
|
|
{
|
|
|
WaferHolderInfo waferHolder = loaderEntity.WaferHolderInfo;
|
|
|
- if(_loaderSide.Name==SIDE_A)
|
|
|
+ if(_loaderSideDevice.Name==SIDE_A)
|
|
|
{
|
|
|
if (WaferManager.Instance.CheckHasWafer(ModuleName.Loader1, 0))
|
|
|
{
|
|
@@ -266,7 +268,6 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
_rotationAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.Rotation");
|
|
|
_vacuum = DEVICE.GetDevice<PufVacuum>($"{Module}.Vacuum");
|
|
|
_distanceSensor = DEVICE.GetDevice<PufDistanceSensor>($"{Module}.DistanceSensor");
|
|
|
- GetLoaderSide();
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 检验条件
|
|
@@ -280,20 +281,28 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
{
|
|
|
JetAxisBase loaderRotationAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Rotation");
|
|
|
double loaderRotationPosition = loaderRotationAxis.MotionData.MotorPosition;
|
|
|
- if (!loaderRotationAxis.CheckPositionIsInStation(loaderRotationPosition, "LOADA"))
|
|
|
+ if (!loaderRotationAxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOAD"))
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_PUF, $"Loader Rotation {loaderRotationPosition} is not in LOADA",-1);
|
|
|
+ NotifyError(eEvent.ERR_PUF, $"Loader Rotation {loaderRotationPosition} is not in LOAD",-1);
|
|
|
return false;
|
|
|
}
|
|
|
+ bool isLoadA = loaderRotationAxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOADA");
|
|
|
+ bool isLoadB = loaderRotationAxis.CheckPositionInStationIgnoreWaferSize(loaderRotationPosition, "LOADB");
|
|
|
+ _loaderSide = isLoadA ? SIDE_A : SIDE_B;
|
|
|
+ GetLoaderSide();
|
|
|
+ string side = isLoadA ? "A" : "B";
|
|
|
if (Module == ModuleName.PUF1.ToString())
|
|
|
{
|
|
|
//Loader1.SwingA 在Open
|
|
|
- JetAxisBase loaderShuttleAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.ShuttleA");
|
|
|
- double loaderShuttleAPosition = loaderShuttleAAxis.MotionData.MotorPosition;
|
|
|
- if (!loaderShuttleAAxis.CheckPositionIsInStation(loaderShuttleAPosition, "OPEN"))
|
|
|
+ JetAxisBase loaderShuttleAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.Shuttle{side}");
|
|
|
+ if (loaderShuttleAAxis != null)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_PUF, $"Loader ShuttleA {loaderShuttleAPosition} is not in OPEN",-1);
|
|
|
- return false;
|
|
|
+ double loaderShuttleAPosition = loaderShuttleAAxis.MotionData.MotorPosition;
|
|
|
+ if (!loaderShuttleAAxis.CheckPositionInStationIgnoreWaferSize(loaderShuttleAPosition, "OUT"))
|
|
|
+ {
|
|
|
+ NotifyError(eEvent.ERR_PUF, $"Loader Shuttle{side} {loaderShuttleAPosition} is not in OUT", -1);
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
//Loader1.TiltA 在HORI
|
|
|
JetAxisBase loaderTiltAAxis = DEVICE.GetDevice<JetAxisBase>($"{ModuleName.Loader1}.TiltA");
|
|
@@ -307,44 +316,39 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
|
|
|
//Loader Handle Wafer状态确认
|
|
|
// Lip Seal Vacuum "ON"
|
|
|
- if (!_loaderSide.SideData.CRSVacuum)
|
|
|
+ if (!_loaderSideDevice.SideData.CRSVacuum)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 LS Vacuum is off",-1);
|
|
|
return false;
|
|
|
}
|
|
|
//Bernoulli Bladder "ON",Retracted Green Light
|
|
|
- if (!_loaderSide.SideData.BernoulliBladder)
|
|
|
+ if (!_loaderSideDevice.SideData.BernoulliBladder)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli Bladder is off",-1);
|
|
|
return false;
|
|
|
}
|
|
|
- if (_loaderSide.SideData.BernoulliExtended)
|
|
|
+ if (_loaderSideDevice.SideData.BernoulliExtended)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli Retracted is off",-1);
|
|
|
return false;
|
|
|
}
|
|
|
//其他SideA/B均为OFF
|
|
|
- if (_loaderSide.SideData.BernoulliN2)
|
|
|
+ if (_loaderSideDevice.SideData.BernoulliN2)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 Bernoulli N2 is on",-1);
|
|
|
return false;
|
|
|
}
|
|
|
- if (!_loaderSide.SideData.DoorUnlock)
|
|
|
- {
|
|
|
- NotifyError(eEvent.ERR_PUF, "Loader1 Door is Locked",-1);
|
|
|
- return false;
|
|
|
- }
|
|
|
//if (_loaderSide.SideData.WHBladder)
|
|
|
//{
|
|
|
// NotifyError(eEvent.ERR_PUF,, "Loader1 WS Bladder is on");
|
|
|
// return false;
|
|
|
//}
|
|
|
- if (_loaderSide.SideData.TransBladder)
|
|
|
+ if (_loaderSideDevice.SideData.TransBladder)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 Translate Bladder is on",-1);
|
|
|
return false;
|
|
|
}
|
|
|
- if (_loaderSide.SideData.TransHigh)
|
|
|
+ if (_loaderSideDevice.SideData.TransHigh)
|
|
|
{
|
|
|
NotifyError(eEvent.ERR_PUF, "Loader1 Translate High Pre is on",-1);
|
|
|
return false;
|
|
@@ -364,7 +368,7 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
return false;
|
|
|
}
|
|
|
//A面
|
|
|
- if (_loaderSide.Name == SIDE_A)
|
|
|
+ if (_loaderSideDevice.Name == SIDE_A)
|
|
|
{
|
|
|
if (WaferManager.Instance.CheckNoWafer(ModuleName.Loader1, 0))
|
|
|
{
|
|
@@ -388,13 +392,13 @@ namespace CyberX8_RT.Modules.PUF
|
|
|
/// </summary>
|
|
|
private void GetLoaderSide()
|
|
|
{
|
|
|
- if (Module == ModuleName.PUF1.ToString())
|
|
|
+ if (_loaderSide==SIDE_A)
|
|
|
{
|
|
|
- _loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideA");
|
|
|
+ _loaderSideDevice = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideA");
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- _loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideB");
|
|
|
+ _loaderSideDevice = DEVICE.GetDevice<LoaderSideDevice>($"{ModuleName.Loader1}.SideB");
|
|
|
}
|
|
|
}
|
|
|
|