Procházet zdrojové kódy

添加修改配置文件功能模块

lixiang před 2 roky
rodič
revize
a728a5bab5
20 změnil soubory, kde provedl 304 přidání a 6 odebrání
  1. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.Common.dll
  2. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.Common.pdb
  3. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.Core.dll
  4. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.Core.pdb
  5. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll
  6. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.pdb
  7. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.Simulator.Core.dll
  8. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.Simulator.Core.pdb
  9. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.UI.Core.dll
  10. binární
      Venus/Framework/Output/MECF.Framework/MECF.Framework.UI.Core.pdb
  11. binární
      Venus/Framework/Output/MECF.Framework/Newtonsoft.Json.dll
  12. binární
      Venus/Framework/Output/MECF.Framework/en-US/MECF.Framework.Common.resources.dll
  13. binární
      Venus/Framework/Output/MECF.Framework/zh-CN/MECF.Framework.Common.resources.dll
  14. 18 2
      Venus/Framework/UICore/Control/SCItemEditor.xaml
  15. 34 0
      Venus/Framework/UICore/Selector/ControlTemplateSelector.cs
  16. 1 0
      Venus/Framework/UICore/UICore.csproj
  17. 69 0
      Venus/Venus_RT/Config/SequenceFormat.xml
  18. 172 0
      Venus/Venus_RT/Config/System.sccfg
  19. 4 4
      Venus/Venus_RT/Instances/ToolLoader.cs
  20. 6 0
      Venus/Venus_RT/Venus_RT.csproj

binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.Common.dll


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.Common.pdb


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.Core.dll


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.Core.pdb


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.dll


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.RT.EquipmentLibrary.pdb


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.Simulator.Core.dll


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.Simulator.Core.pdb


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.UI.Core.dll


binární
Venus/Framework/Output/MECF.Framework/MECF.Framework.UI.Core.pdb


binární
Venus/Framework/Output/MECF.Framework/Newtonsoft.Json.dll


binární
Venus/Framework/Output/MECF.Framework/en-US/MECF.Framework.Common.resources.dll


binární
Venus/Framework/Output/MECF.Framework/zh-CN/MECF.Framework.Common.resources.dll


+ 18 - 2
Venus/Framework/UICore/Control/SCItemEditor.xaml

@@ -5,11 +5,24 @@
              xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
              xmlns:local="clr-namespace:MECF.Framework.UI.Core.Control"
              xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
+             xmlns:Selector="clr-namespace:MECF.Framework.UI.Core.Selector"
              mc:Ignorable="d" 
              d:DesignHeight="450" d:DesignWidth="900">
     <Grid>
         <DataGrid AutoGenerateColumns="False" Margin="5" Background="White" ItemsSource="{Binding ScItemList, Mode=OneWay}" SelectionMode="Single" SelectionUnit="FullRow"
                       FontFamily="Arial,SimSun" FontSize="13" BorderThickness="0.1" CanUserDeleteRows="False" CanUserAddRows="False" IsReadOnly="True" >
+            <DataGrid.Resources>
+                <DataTemplate x:Key="TextBoxTemplate">
+                    <TextBox Text="{Binding SetPoint, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"  FontSize="12"/>
+                </DataTemplate>
+
+                <DataTemplate x:Key="ComboBoxTemplate">
+                    <ComboBox Text="{Binding SetPoint, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"  FontSize="12">
+                        <ComboBoxItem>True</ComboBoxItem>
+                        <ComboBoxItem>False</ComboBoxItem>
+                    </ComboBox>
+                </DataTemplate>
+            </DataGrid.Resources>
             <DataGrid.Columns>
                 <DataGridTextColumn Header="Index" Width="50" CanUserSort="True" IsReadOnly="True" Binding="{Binding Index,Mode=OneWay}">
 
@@ -44,11 +57,14 @@
                 </DataGridTextColumn>
 
                 <DataGridTemplateColumn Header="SetPoint" Width="90" CanUserSort="True" SortMemberPath="Type">
-                    <DataGridTemplateColumn.CellTemplate>
+                    <!--<DataGridTemplateColumn.CellTemplate>
                         <DataTemplate>
                             <TextBox Text="{Binding SetPoint, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"  FontSize="12"/>
                         </DataTemplate>
-                    </DataGridTemplateColumn.CellTemplate>
+                    </DataGridTemplateColumn.CellTemplate>-->
+                    <DataGridTemplateColumn.CellTemplateSelector>
+                        <Selector:ControlTemplateSelector TextBoxTemplate="{StaticResource TextBoxTemplate}" ComboBoxTemplate="{StaticResource ComboBoxTemplate}" />
+                    </DataGridTemplateColumn.CellTemplateSelector>
                 </DataGridTemplateColumn>
 
                 <DataGridTemplateColumn Header="Command"  Width="90" CanUserSort="False" >

+ 34 - 0
Venus/Framework/UICore/Selector/ControlTemplateSelector.cs

@@ -0,0 +1,34 @@
+
+using Aitex.Core.RT.SCCore;
+using System.Windows;
+using System.Windows.Controls;
+
+namespace MECF.Framework.UI.Core.Selector
+{
+    internal class ControlTemplateSelector : DataTemplateSelector
+    {
+        public DataTemplate TextBoxTemplate { get; set; }
+        public DataTemplate ComboBoxTemplate { get; set; }
+
+        public override DataTemplate SelectTemplate(object item, DependencyObject container)
+        {
+
+            if (item == null)
+            {
+                return null;
+            }
+
+            SCConfigItem sCConfigItem = (SCConfigItem)item;
+            if (sCConfigItem.Type == "Bool")
+            {
+                return ComboBoxTemplate;
+            }
+            else
+            {
+                return TextBoxTemplate;
+            }
+
+        }
+
+    }
+}

+ 1 - 0
Venus/Framework/UICore/UICore.csproj

@@ -424,6 +424,7 @@
       <DependentUpon>Resources.resx</DependentUpon>
     </Compile>
     <Compile Include="ExtendedControls\WpfPropertyGrid.cs" />
+    <Compile Include="Selector\ControlTemplateSelector.cs" />
     <Compile Include="Style\GridHelper.cs" />
     <Compile Include="Style\HeaderPanel.cs" />
     <Compile Include="ValidationRules\ValidateEmailAddress.cs" />

+ 69 - 0
Venus/Venus_RT/Config/SequenceFormat.xml

@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Aitex>
+  <TableSequenceFormat RecipeVersion="Cluster">
+    <Catalog Type="Position">
+      <Item Name="Position" DisplayName="Position" InputType="ReadOnlySelection"   >
+        <Selection Name="Aligner" DisplayName="Aligner" Parameter="CoolingTime" />
+        <Selection Name="PM" DisplayName="PM" Parameter="PMSelection,PMARecipe,PMBRecipe" />
+      </Item>
+    </Catalog>
+
+    <Catalog Type="Parameter">
+
+      <!--<Item Name="LPSelection" DisplayName="LP Selection" InputType="MultiSelection" >
+        <Selection Name="LP1" DisplayName="LP1"/>
+        <Selection Name="LP2" DisplayName="LP2"/>
+      </Item>
+
+      <Item Name="LLSelection" DisplayName="LL Selection" InputType="MultiSelection" >
+        <Selection Name="LL1" DisplayName="LL1"/>
+        <Selection Name="LL2" DisplayName="L2"/>
+      </Item>
+-->
+      <Item Name="PMSelection" DisplayName="PM Selection" InputType="MultiSelection" >
+        <Selection Name="PMA" DisplayName="PMA"/>
+        <Selection Name="PMB" DisplayName="PMB"/>
+      </Item>
+
+      <Item Name="PMARecipe" DisplayName="PMA Recipe" InputType="RecipeSelection" RecipeFilePath="PMA"  RelatedParameter=""    Min="0" Max="999999"  />
+
+      <Item Name="PMBRecipe" DisplayName="PMB Recipe" InputType="RecipeSelection" RecipeFilePath="PMB"  RelatedParameter=""    Min="0" Max="999999"  />
+
+      <Item Name="CoolingTime" DisplayName="Cooling Time(s)" InputType="NumInput"   Min="0" Max="360"  />
+    </Catalog>
+  </TableSequenceFormat>
+  <TableSequenceData RecipeVersion="Cluster" CreatedBy="System" Barcode="" CreationTime="2016-05-13T13:56:44" LastRevisedBy="admin" LastRevisionTime="2015-10-13T13:56:44" Description="(Empty)">
+    <Step></Step>
+  </TableSequenceData>
+  <TableRecipeSchema>
+    <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">  
+      <xs:simpleType name="booleanType">
+        <xs:restriction base="xs:string">
+          <xs:enumeration value="0" />
+          <xs:enumeration value="1" />
+          <xs:enumeration value="False" />
+          <xs:enumeration value="True" />
+          <xs:enumeration value="false" />
+          <xs:enumeration value="true" />
+        </xs:restriction>
+      </xs:simpleType>
+      <xs:element name="TableSequenceData">
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element maxOccurs="unbounded" name="Step">
+
+            </xs:element>
+          </xs:sequence>
+          <xs:attribute name="RecipeVersion" type="xs:string" fixed="Cluster" use="required" />
+          <xs:attribute name="CreatedBy" type="xs:string" use="required" />
+          <xs:attribute name="CreationTime" type="xs:dateTime" use="required" />
+          <xs:attribute name="LastRevisedBy" type="xs:string" use="required" />
+          <xs:attribute name="LastRevisionTime" type="xs:dateTime" use="required" />
+          <xs:attribute name="Barcode" type="xs:string" use="required" />
+          <xs:attribute name="Description" type="xs:string" use="required" />
+        </xs:complexType>
+      </xs:element>
+    </xs:schema>
+  </TableRecipeSchema>
+  <Signature>axPPcBt+girefGdBoafkJf+pBhY=</Signature>
+</Aitex>

+ 172 - 0
Venus/Venus_RT/Config/System.sccfg

@@ -0,0 +1,172 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root system="Venus">
+  <configs name="System">
+    <config default="false" name="IsSimulatorMode" description="仿真模式" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="false" name="IsATMMode" description="大气压调试模式" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="false" name="IsCycleMode" description="循环跑片模式" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="3" name="CycleCount" description="CycleCount" max="999999" min="1" paramter="" tag="" unit="" type="Integer" />
+    <config default="true" name="PMAIsInstalled" description="Enable PMA" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="false" name="PMBIsInstalled" description="Enable PMB" max="" min="" paramter="" tag="" unit="" type="Bool" />
+    <config default="5" name="ATMCyclePMDelayTime" description="ATMCyclePMDelayTime" max="9999" min="1" paramter="" tag="" unit="s" type="Integer" />
+    <config default="25" name="MaxTemperatureToleranceTransferWafer" description="MaxTemperatureToleranceTransferWafer" max="100" min="1" paramter="" tag="" unit="℃" type="Double" />
+    <config default="1" name="MaxTemperatureToleranceToTarget" description="MaxTemperatureToleranceToTarget" max="100" min="1" paramter="" tag="" unit="℃" type="Double" />
+    <config default="3000" name="BuzzerBlinkingTime" description="BuzzerBlinkingTime" max="60000" min="1" paramter="" tag="" unit="s" type="Double" />
+    <config default="3" name="SmallWafer" nameView="Small Wafer" description="小晶圆尺寸" max="100" min="0" paramter="" tag="" unit="" visible="false" type="Integer" />
+    <config default="4" name="MidWafer" nameView="Mid Wafer" description="中晶圆尺寸" max="100" min="0" paramter="" tag="" unit="" visible="false" type="Integer" />
+    <config default="6" name="BigWafer" nameView="Big Wafer" description="大晶圆尺寸" max="100" min="0" paramter="" tag="" unit="" visible="false" type="Integer" />
+  </configs>
+
+
+  <!--Router-->
+  <configs name="Scheduler">
+    <config default="true" name="GroupWaferBySequence" description="GroupWaferBySequence" max="0" min="0" paramter="" tag="" unit="" type="Bool" />
+    <config default="true" name="IsRunInParallelMode" description="并行模式1对1,串行模式按顺序" max="0" min="0" paramter="" tag="" unit="" type="Bool" />
+  </configs>
+
+  <!--PMA-->
+  <configs name="PMA">
+    <config default="120" name="PrepareTransferTimeout" description="prepare transfer time out" max="99999" min="1" paramter="" tag="" unit="s" type="Integer" />
+    <config default="1" name="OpenGasValveTimeout" description="开阀超时" max="60" min="0" paramter="" tag="" unit="second" type="Integer" />
+    <config default="1" name="TimeLimitOfCloseGasValve" description="" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="1" name="OpenCloseSlitValveTimeout" description="" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="180" name="VentTime" description="" max="600" min="0" paramter="" tag="" unit="second" type="Integer" />
+    <config default="3" name="GasCount" description="Gas stick count" max="5" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="100" name="GasFlowPressureAlarmRange" description="" max="760000" min="0" paramter="" tag="" unit="sccm" type="Double" />
+    <config default="60" name="GasFlowPressureAlarmTime" description="" max="3600" min="0" paramter="" tag="" unit="second" type="Double" />
+    <config default="true" name="EnableThrottleValve" description="" max="10" min="0" paramter="" tag="" unit="" type="Bool" />
+    <config default="150" name="ChamberHeaterSetPointLimit" description="" max="500" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="140" name="ForeLineHeaterSetPointLimit" description="" max="500" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="120" name="CheckSubstrateTempTimeout" description="" max="3600" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="90" name="CheckATMTimeout" description="" max="3000" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="1" name="VentTimeDelay" description="" max="3000" min="0" paramter="" tag="" unit="s" type="Integer" />
+    
+    <configs name="DryPump">
+      <config default="1" name="MFG" description="厂商, 1:Sky; 2:Edwards" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="1" name="CommunicationType" description="0:Analogue; 1:RS232; 2:Ethernet" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="COM21" name="Port" description="serial port name of pump" max="" min="" paramter="" tag="" unit="" type="String" />
+      <config default="1000" name="ChamberForelinePressureThreshold" description="Chamber Foreline Pressure Threshold" max="10000" min="0" paramter="" tag="" unit="mtorr" type="Double" />
+      <config default="20" name="ChamberForelinePressureTimeout" description="Chamber Foreline Pressure Timeout" max="3000" min="0" paramter="" tag="" unit="s" type="Integer" />
+    </configs>
+    <configs name="Rf">
+      <config default="1" name="MFG" description="厂商, 1:AdTec; 2:MKS" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="1" name="model" description="型号, 1:AdTec-TX20, 2:AdTec-TX30" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="1" name="CommunicationType" description="0:Analogue; 1:RS232; 2:Ethernet" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="COM22" name="Port" description="serial port name of RFG" max="" min="" paramter="" tag="" unit="" type="String" />
+      <config default="500" name="PowerAlarmRange" description="Power Alarm Range" max="1000" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="10" name="PowerAlarmTime" description="Power Alarm Time" max="10" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="1" name="ReflectPowerAlarmRange" description="Reflect Power Alarm Range" max="1000" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="1" name="ReflectPowerAlarmTime" description="Reflect Power Alarm Time" max="10" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="3000" name="PowerRange" description="Power Range" max="30000" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="1" name="Coefficient" description="Coefficient" max="10" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="false" name="EnablePulsingFunction" description="Enable Pulsing Function" max="10" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="false" name="EnableReflectPower" description="Enable Reflect Power" max="10" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="false" name="EnableVoltageCurrent" description="Enable Voltage Current" max="10" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="1" name="PowerRegulationFactor" description="Power Regulation Factor" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="1000" name="RfPowerAlarmRange" description="Rf Power Alarm Range" max="10000" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="3000" name="RfPowerAlarmTime" description="Rf Power Alarm Time" max="10000" min="0" paramter="" tag="" unit="" type="Integer" />
+    </configs>
+    <configs name="match">
+      <config default="false" name="EnableMatch" description="enable match or not" max="1" min="0" tag="" unit="" type="Bool" />
+      <config default="1" name="MFG" description="厂商" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="1" name="CommunicationType" description="0:Analogue; 1:RS232; 2:Ethernet" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="COM23" name="Port" description="serial port name of match" max="" min="" paramter="" tag="" unit="" type="String" />
+      <config default="1" name="MatchMode" description="Match Mode" max="10" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="false" name="EnableC1C2Position" description="Enable C1 C2 Position" max="10" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="10" name="MatchPositionC1" description="Match Position C1" max="100" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="10" name="MatchPositionC2" description="Match Position C2" max="100" min="0" paramter="" tag="" unit="" type="Double" />
+    </configs>
+    <configs name="MfcGas1">
+      <config default="true" name="MfcEnableAlarm" description="Mfc Enable Alarm" max="1" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="10" name="MfcAlarmRange" description="Mfc Alarm Range" max="200" min="0" paramter="" tag="" unit="sccm" type="Integer" />
+      <config default="10" name="MfcAlarmTime" description="Mfc Alarm Time" max="60" min="0" paramter="" tag="" unit="second" type="Integer" />
+      <config default="O2" name="GasName" description="Name of NO.1 gas stick" tag="" unit="" type="String" />
+      <config default="true" name="Enable" description="Enable gas 1 or not" tag="" unit="" type="Bool" />
+      <config default="100" name="MfcN2Scale" description="Max scale by N2 tuning" max="10000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="MfcScaleFactor" description="Scale factor" max="10" min="0" tag="" unit="sccm" type="Double" />
+      <config default="100" name="DefaultSetPoint" description="default setpoint" max="1000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="FlowRegulationFactor" description="flow regulation factor" max="10" min="0" tag="" unit="sccm" type="Integer" />
+    </configs>
+    <configs name="MfcGas2">
+      <config default="true" name="MfcEnableAlarm" description="Mfc Enable Alarm" max="1" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="10" name="MfcAlarmRange" description="Mfc Alarm Range" max="200" min="0" paramter="" tag="" unit="sccm" type="Integer" />
+      <config default="10" name="MfcAlarmTime" description="Mfc Alarm Time" max="60" min="0" paramter="" tag="" unit="second" type="Integer" />
+      <config default="N2" name="GasName" description="Name of NO.2 gas stick" tag="" unit="" type="String" />
+      <config default="true" name="Enable" description="Enable gas 2 or not" tag="" unit="" type="Bool" />
+      <config default="100" name="MfcN2Scale" description="Max scale by N2 tuning" max="10000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="MfcScaleFactor" description="Scale factor" max="10" min="0" tag="" unit="sccm" type="Double" />
+      <config default="100" name="DefaultSetPoint" description="default setpoint" max="1000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="FlowRegulationFactor" description="flow regulation factor" max="10" min="0" tag="" unit="sccm" type="Integer" />
+    </configs>
+    <configs name="MfcGas3">
+      <config default="true" name="MfcEnableAlarm" description="Mfc Enable Alarm" max="1" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="10" name="MfcAlarmRange" description="Mfc Alarm Range" max="200" min="0" paramter="" tag="" unit="sccm" type="Integer" />
+      <config default="10" name="MfcAlarmTime" description="Mfc Alarm Time" max="60" min="0" paramter="" tag="" unit="second" type="Integer" />
+      <config default="AR" name="GasName" description="Name of NO.3 gas stick" tag="" unit="" type="String" />
+      <config default="true" name="Enable" description="Enable gas 3 or not" tag="" unit="" type="Bool" />
+      <config default="100" name="MfcN2Scale" description="Max scale by N2 tuning" max="10000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="MfcScaleFactor" description="Scale factor" max="10" min="0" tag="" unit="sccm" type="Double" />
+      <config default="100" name="DefaultSetPoint" description="default setpoint" max="1000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="FlowRegulationFactor" description="flow regulation factor" max="10" min="0" tag="" unit="sccm" type="Integer" />
+    </configs>
+    <configs name="MfcGas4">
+      <config default="true" name="MfcEnableAlarm" description="Mfc Enable Alarm" max="1" min="0" paramter="" tag="" unit="" type="Bool" />
+      <config default="10" name="MfcAlarmRange" description="Mfc Alarm Range" max="200" min="0" paramter="" tag="" unit="sccm" type="Integer" />
+      <config default="10" name="MfcAlarmTime" description="Mfc Alarm Time" max="60" min="0" paramter="" tag="" unit="second" type="Integer" />
+      <config default="Gas4" name="GasName" description="Name of NO.4 gas stick" tag="" unit="" type="String" />
+      <config default="true" name="Enable" description="Enable gas 4 or not" tag="" unit="" type="Bool" />
+      <config default="100" name="MfcN2Scale" description="Max scale by N2 tuning" max="10000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="MfcScaleFactor" description="Scale factor" max="10" min="0" tag="" unit="sccm" type="Double" />
+      <config default="100" name="DefaultSetPoint" description="default setpoint" max="1000" min="0" tag="" unit="sccm" type="Integer" />
+      <config default="1" name="FlowRegulationFactor" description="flow regulation factor" max="10" min="0" tag="" unit="sccm" type="Integer" />
+    </configs>
+    <configs name="Pump">
+      <config default="30" name="LeakRate" description="Leak Rate" max="756000" min="0" paramter="" tag="" unit="mTorrPerMin" type="Double" />
+      <config default="180" name="LeakCheckPumpingTime" description="Leak Check Pumping Time" max="3000" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="180" name="LeakCheckWaitTime" description="Leak Check Wait Time" max="3000" min="0" paramter="" tag="" unit="" type="Integer" />
+      <config default="150" name="PumpBasePressure" description="PM Pump Base Pressure" max="756000" min="0" paramter="" tag="" unit="mTorr" type="Integer" />
+      <config default="120" name="PumpTimeLimit" description="PM Pump Time Limit" max="3000" min="0" paramter="" tag="" unit="" type="Double" />
+      <config default="5" name="PumpValveDelay" description="PM Pump Valve Delay" max="3000" min="0" paramter="" tag="" unit="s" type="Integer" />
+      <config default="150" name="LoadLockPumpBasePressure" description="LoadLock Pump Base Pressure" max="756000" min="0" paramter="" tag="" unit="mTorr" type="Integer" />
+      <config default="120" name="LoadLockPumpTimeLimit" description="LoadLock Pump Time Limit" max="3000" min="0" paramter="" tag="" unit="" type="Double" />
+    </configs>
+    <configs name="Purge">
+      <config default="3" name="PurgeCycleCount" description="Purge Cycle Count" max="30" min="0" paramter="" tag="" unit="times" type="Double" />
+      <config default="700000" name="PurgeVentPressure" description="Purge Vent Pressure" max="760000" min="0" paramter="" tag="" unit="mtorr" type="Double" />
+      <config default="10" name="PurgePumpPressure" description="Purge Pump Pressure" max="760000" min="0" paramter="" tag="" unit="mtorr" type="Double" />
+      <config default="60" name="PurgeVentTimeLimit" description="Purge Vent Time Limit" max="3600" min="0" paramter="" tag="" unit="second" type="Double" />
+      <config default="60" name="PurgePumpTimeLimit" description="Purge Pump Time Limit" max="3600" min="0" paramter="" tag="" unit="second" type="Double" />
+      <config default="10" name="PurgeVentStableTime" description="Purge Vent Stable Time" max="600" min="0" paramter="" tag="" unit="second" type="Double" />
+      <config default="10" name="PurgePumpStableTime" description="Purge Pump Stable Time" max="600" min="0" paramter="" tag="" unit="second" type="Double" />
+    </configs>
+    <configs name="HeaterChamber">
+      <config default="0" name="HeaterOffset25-50" description="25&lt;=设定值&lt;50" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset50-75" description="50&lt;=设定值&lt;75" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset75-100" description="75&lt;=设定值&lt;100" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset100-125" description="100&lt;=设定值&lt;125" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset125-150" description="125&lt;=设定值&lt;150" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset150-175" description="150&lt;=设定值&lt;175" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset175-200" description="175&lt;=设定值&lt;200" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+      <config default="0" name="HeaterOffset200+" description="200&lt;=设定值" max="20" min="0" paramter="" tag="" unit="degree" type="Integer" />
+    </configs>
+  </configs>
+
+  <!--FA-->
+  <configs name="FA">
+    <config default="Passive" name="ConnectionMode" description="Passive  Active" max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="127.0.0.1" name="LocalIpAddress" description=" " max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="5021" name="LocalPortNumber" description="LocalPortNumber" max="99999" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="127.0.0.1" name="RemoteIpAddress" description=" " max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="5020" name="RemotePortNumber" description=" " max="99999" min="0" paramter="" tag="" unit="" type="Integer" />
+    <config default="45" name="T3Timeout" description=" " max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="10" name="T5Timeout" description=" " max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="5" name="T6Timeout" description=" " max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="10" name="T7Timeout" description=" " max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="5" name="T8Timeout" description=" " max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="false" name="EnableSpooling" description="EnableSpooling" max="0" min="0" paramter="" tag="" unit="" type="Bool" />
+    <config default="30" name="LinkTestInterval" description="LinkTestInterval" max="999" min="0" paramter="" tag="" unit="s" type="Integer" />
+    <config default="Enabled" name="DefaultCommunicationState" description="Enabled /Disabled" max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="Online" name="DefaultControlState" description="Online / Offline" max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="Local" name="DefaultControlSubState" description="Local / Remote" max="0" min="0" paramter="" tag="" unit="" type="String" />
+    <config default="0" name="DeviceId" description="DeviceId" max="0" min="0" paramter="" tag="" unit="" type="String" />
+  </configs>
+</root>

+ 4 - 4
Venus/Venus_RT/Instances/ToolLoader.cs

@@ -66,7 +66,7 @@ namespace Venus_RT.Instances
 
             RecipeFileManager.Instance.Initialize(new VirgoRecipeFileContext(), new VirgoSequenceFileContext(), true);
 
-            //Singleton<SystemConfigManager>.Instance.Initialize(PathManager.GetCfgDir() + "System.sccfg");
+            Singleton<SystemConfigManager>.Instance.Initialize(PathManager.GetCfgDir() + "System.sccfg");
 
             //IoProviderManager.Instance.Initialize(PathManager.GetCfgDir() + "IoProviderConfig.xml");
 
@@ -86,9 +86,9 @@ namespace Venus_RT.Instances
 
             //DataCollectionManager.Instance.Initialize(RtInstance.DatabaseName);
 
-            //RtSystemManager.Instance.AddCustomBackend("SC", new BackendSCConfigView());
-            //RtSystemManager.Instance.AddCustomBackend("IO", new IOView());
-            //RtSystemManager.Instance.AddCustomBackend("FSM", new FSMView());
+            RtSystemManager.Instance.AddCustomBackend("SC", new BackendSCConfigView());
+            RtSystemManager.Instance.AddCustomBackend("IO", new IOView());
+            RtSystemManager.Instance.AddCustomBackend("FSM", new FSMView());
 
             //Singleton<RouteManager>.Instance.Initialize();
 

+ 6 - 0
Venus/Venus_RT/Venus_RT.csproj

@@ -117,6 +117,9 @@
       <Generator>ResXFileCodeGenerator</Generator>
       <LastGenOutput>Resources.Designer.cs</LastGenOutput>
     </EmbeddedResource>
+    <None Include="Config\System.sccfg">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </None>
     <None Include="Properties\Settings.settings">
       <Generator>SettingsSingleFileGenerator</Generator>
       <LastGenOutput>Settings.Designer.cs</LastGenOutput>
@@ -173,6 +176,9 @@
     <Content Include="Config\RecipeFormat.xml">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </Content>
+    <Content Include="Config\SequenceFormat.xml">
+      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
+    </Content>
     <Content Include="Config\_ioDefineVenus.xml">
       <CopyToOutputDirectory>Always</CopyToOutputDirectory>
     </Content>