|
@@ -289,13 +289,13 @@ namespace Venus_MainPages.ViewModels
|
|
|
|
|
|
}
|
|
|
#endregion
|
|
|
- arm1oldWaferStatus = ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[0].WaferStatus;
|
|
|
- arm2oldWaferStatus = ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[1].WaferStatus;
|
|
|
+ arm1oldWaferStatus = ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[0].WaferStatus;
|
|
|
+ arm2oldWaferStatus = ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[1].WaferStatus;
|
|
|
}
|
|
|
private async void RobotActiont(string oldValue,string newValue)
|
|
|
{
|
|
|
|
|
|
- if (oldValue == "None" && newValue == "Placing" && ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[0].WaferStatus==1)
|
|
|
+ if (oldValue == "None" && newValue == "Placing" && ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[0].WaferStatus==1)
|
|
|
{
|
|
|
var TMRobotMoveActionBladeTarget = QueryDataClient.Instance.Service.GetData("TM.RobotMoveAction.BladeTarget");
|
|
|
if (TMRobotMoveActionBladeTarget != null)
|
|
@@ -325,7 +325,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
Robot2XAction = WaferRobotXAction.Extend;
|
|
|
}
|
|
|
}
|
|
|
- if (oldValue == "None" && newValue == "Placing" && ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[1].WaferStatus == 1)
|
|
|
+ if (oldValue == "None" && newValue == "Placing" && ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[1].WaferStatus == 1)
|
|
|
{
|
|
|
var TMRobotMoveActionBladeTarget = QueryDataClient.Instance.Service.GetData("TM.RobotMoveAction.BladeTarget");
|
|
|
if (TMRobotMoveActionBladeTarget != null)
|
|
@@ -871,8 +871,8 @@ namespace Venus_MainPages.ViewModels
|
|
|
}
|
|
|
|
|
|
|
|
|
- BladeAWafer = ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[0];
|
|
|
- BladeBWafer = ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[1];
|
|
|
+ BladeAWafer = ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[0];
|
|
|
+ BladeBWafer = ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[1];
|
|
|
|
|
|
RtDataValues = QueryDataClient.Instance.Service.PollData(m_RtDataKeys);
|
|
|
|
|
@@ -880,7 +880,7 @@ namespace Venus_MainPages.ViewModels
|
|
|
var TMRobotMoveActionArmTarget = QueryDataClient.Instance.Service.GetData("TM.RobotMoveAction.ArmTarget");
|
|
|
if (TMRobotMoveActionArmTarget != null)
|
|
|
{
|
|
|
- RobotArm = ModuleManager.ModuleInfos["TM"].WaferManager.Wafers[0].WaferStatus.ToString();
|
|
|
+ RobotArm = ModuleManager.ModuleInfos["TMRobot"].WaferManager.Wafers[0].WaferStatus.ToString();
|
|
|
}
|
|
|
|
|
|
|