|
@@ -88,7 +88,7 @@ namespace CyberX8_RT.Modules.Loader
|
|
|
public RState Monitor()
|
|
|
{
|
|
|
LottrackRecord();
|
|
|
- Runner.Run(UnloadStep.RotationGoToLOADA,RotationGotoLOADA,_delay_1ms)
|
|
|
+ Runner.Run(UnloadStep.RotationGoToLOADA,RotationGotoLOAD,_delay_1ms)
|
|
|
.WaitWithStopCondition(UnloadStep.RotationGoToLOADAWait,CheckRotationPositionStatus,CheckRotationPositionRunStop)
|
|
|
.Run(UnloadStep.SideUnload, () => StartUnloadRoutine(_sideUnloadRoutine,_isSideUnloaded), _delay_1ms)
|
|
|
.WaitWithStopCondition(UnloadStep.UnloadAllWait, CheckUnloadAllRoutineEndStatus,CheckUnloadAllRoutineStopStatus)
|
|
@@ -99,12 +99,13 @@ namespace CyberX8_RT.Modules.Loader
|
|
|
/// Rotation Goto LOADA
|
|
|
/// </summary>
|
|
|
/// <returns></returns>
|
|
|
- private bool RotationGotoLOADA()
|
|
|
+ private bool RotationGotoLOAD()
|
|
|
{
|
|
|
- bool result = _rotationAxis.PositionStation($"LOADA{_waferSize}", false);
|
|
|
+ string side = _side == SIDE_A ? "A" : "B";
|
|
|
+ bool result = _rotationAxis.PositionStation($"LOAD{side}{_waferSize}", false);
|
|
|
if (!result)
|
|
|
{
|
|
|
- NotifyError(eEvent.ERR_LOADER, "rotation start goto LOADA failed", 0);
|
|
|
+ NotifyError(eEvent.ERR_LOADER, "rotation start goto LOAD failed", 0);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
@@ -215,7 +216,7 @@ namespace CyberX8_RT.Modules.Loader
|
|
|
InitializeParameters();
|
|
|
_loaderCommon = DEVICE.GetDevice<LoaderCommonDevice>($"{Module}.Common");
|
|
|
_loaderSide = DEVICE.GetDevice<LoaderSideDevice>($"{Module}.{_side}");
|
|
|
- return Runner.Start(Module, "Start UnloadAll");
|
|
|
+ return Runner.Start(Module, "Start Unload side");
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// 初始化参数
|