Browse Source

update 1.0.0.3

jiangjy 1 week ago
parent
commit
5f0ed86027

+ 2 - 2
Furnace/FurnaceGasPanelUI/Properties/AssemblyInfo.cs

@@ -54,5 +54,5 @@ using System.Windows;
 // You can specify all the values or you can default the Build and Revision Numbers 
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.2")]
-[assembly: AssemblyFileVersion("1.0.0.2")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]

+ 2 - 1
Furnace/FurnaceRT/Config/System.sccfg

@@ -4,7 +4,7 @@
 		<config default="true" name="IsSimulatorMode" description="Is Simulator Mode" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="120" name="BackUpFileMaxNumber" description="BackUpFileMaxNumber" max="1000" min="0" paramter="" tag="" unit="" type="Integer"   />
 		<!--process log 保留小数配置-->
-		<config default="f3" name="DataHistoryResolution" description="DataHistoryResolution" max="" min="" paramter="" tag="" unit="" type="String" visible="false"  />
+		<config default="3" name="DataHistoryResolution" description="DataHistoryResolution" max="" min="" paramter="" tag="" unit="" type="String" visible="false"  />
 
 		<!--主界面MFC setpoint 是否大于零才展示-->
 		<config default="true" name="ShowMFCBySetPoint" description="MFC setpoint greater than 0 display" max="" min="" paramter="" tag="" unit="" type="Bool" />
@@ -12,6 +12,7 @@
 		<config default="true" name="IsATMMode" description="Is ATM Mode" max="" min="" paramter="" tag="" unit="" type="Bool" visible="false"  />
 		<config default="false" name="IsCycleMode" description="Is Cycle Mode" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="3" name="CycleCount" description="Cycle Count" max="999999" min="1" paramter="" tag="" unit="" type="Integer" />
+		<config default="3" name="FimsDelayTime" description="Fims Dela yTime" max="999999" min="1" paramter="" tag="" unit="" type="Integer" />
 		<config default="true" name="EnableWarningWaferProcessState" description="Enable Warning Wafer Process State" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="true" name="EnableWarningFailedWafer" description="Enable Warning Failed Wafer" max="" min="" paramter="" tag="" unit="" type="Bool" />
 		<config default="true" name="EnablePopupKeyboard" description="Enable Popup Keyboard" max="" min="" paramter="" tag="" unit="" type="Bool" />

BIN
Furnace/FurnaceRT/Config/VIDs/Equipment_VIDs_20251103.xlsx


+ 6 - 2
Furnace/FurnaceRT/Equipments/FIMSs/FIMSLoadRoutine.cs

@@ -23,7 +23,7 @@ namespace FurnaceRT.Equipments.FIMSs
         private FIMSModule _fimsModule;
         private PMModule _pmModule;
         private bool _isNeedN2Purge;
-
+        private int _fimsDelayTime = 3;
         public FIMSLoadRoutine(FIMSModule fimsModule)
         {
             Module = fimsModule.Module.ToString();
@@ -43,6 +43,10 @@ namespace FurnaceRT.Equipments.FIMSs
             Reset();
 
             _timeout = SC.GetValue<int>($"FIMS.{Module}.MotionTimeout");
+            if (SC.ContainsItem("System.FimsDelayTime"))
+            {
+                _fimsDelayTime = SC.GetValue<int>($"System.FimsDelayTime");
+            }
 
             if (!Singleton<EquipmentManager>.Instance.IsAutoMode && !Singleton<EquipmentManager>.Instance.IsReturnWafer)
             {
@@ -94,7 +98,7 @@ namespace FurnaceRT.Equipments.FIMSs
 
                 Load((int)RoutineStep.Load, _timeout);
 
-                Delay((int)RoutineStep.Delay, 3);
+                Delay((int)RoutineStep.Delay, _fimsDelayTime);
 
                 CheckLoadFinish((int)RoutineStep.CheckLoadFinish, _timeout);
             }

+ 2 - 2
Furnace/FurnaceRT/Properties/AssemblyInfo.cs

@@ -51,5 +51,5 @@ using System.Windows;
 // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
 // 方法是按如下所示使用“*”: :
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.2")]
-[assembly: AssemblyFileVersion("1.0.0.2")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]

+ 2 - 2
Furnace/FurnaceSetup/Furnace_Setup/Properties/AssemblyInfo.cs

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
 // You can specify all the values or you can default the Build and Revision Numbers 
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.2")]
-[assembly: AssemblyFileVersion("1.0.0.2")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]

+ 2 - 2
Furnace/FurnaceSimulator/Properties/AssemblyInfo.cs

@@ -51,5 +51,5 @@ using System.Windows;
 // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
 // 方法是按如下所示使用“*”: :
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.2")]
-[assembly: AssemblyFileVersion("1.0.0.2")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]

+ 2 - 2
Furnace/FurnaceUI/Properties/AssemblyInfo.cs

@@ -54,5 +54,5 @@ using System.Windows;
 // You can specify all the values or you can default the Build and Revision Numbers 
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.0.0.2")]
-[assembly: AssemblyFileVersion("1.0.0.2")]
+[assembly: AssemblyVersion("1.0.0.3")]
+[assembly: AssemblyFileVersion("1.0.0.3")]