Browse Source

revise wago simulator

chenzk 1 month ago
parent
commit
d6ea09db69

+ 13 - 12
CyberX8_RT/Config/Devices/WagoControllerCfg-Simulator.xml

@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <WagoControllerConfig>
-	<WagoDeviceConfig Module="Wago0" IpAddress="10.0.0.12" Port="502" SendTimeout="2000" RecvTimeout="2000" Channel="1">
+	<WagoDeviceConfig Module="Wago0" IpAddress="127.0.0.1" Port="501" SendTimeout="2000" RecvTimeout="2000" Channel="1">
 		<Dig_In>
 			<DIGroup Name="N5">
 				<DI Name="r_Cassette_1_150" Address="0" Invert="false"/>
@@ -76,20 +76,21 @@
 				<AI Name="AI1"  Address="0" Scaling="0=3276.7,-757=16383.5" DataType="short"/>
 				<AI Name="AI2"  Address="1" DataType="short"/>
 				<AI Name="AI3"  Address="2" DataType="short"/>
-				<AI Name="r_LoaderA_LS_Vacuum_anlg"  Address="4" Scaling="1=0,5=-757.5" DataType="short"/>
-				<AI Name="r_LoaderB_LS_Vacuum_anlg"  Address="5" Scaling="1=0,5=-757.5" DataType="short"/>
-				<AI Name="AI6"  Address="5" DataType="short"/>
-				<AI Name="r_LOADER_GasFlowSensor_FLOW"  Address="7" Scaling="1=0,5=500" DataType="short"/>
+				<AI Name="AI4"  Address="3" DataType="short"/>
+				<AI Name="r_LoaderA_LS_Vacuum_anlg"  Address="4" Scaling="0=3276.7,-757=16383.5" DataType="short"/>
+				<AI Name="r_LoaderB_LS_Vacuum_anlg"  Address="5" Scaling="0=3276.7,-757=16383.5" DataType="short"/>
+				<AI Name="AI6"  Address="6" DataType="short"/>
+				<AI Name="r_LOADER_GasFlowSensor_FLOW"  Address="7" Scaling="0=3370, 500=17000" DataType="short"/>
 			</AIGroup>
 			<AIGroup Name="N2">
-				<AI Name="r_LOADERA_BERNOULLI_PRESSURE"  Address="8" Scaling="1=0,5=145.0" DataType="short"/>
-				<AI Name="r_LOADERB_BERNOULLI_PRESSURE"  Address="9" Scaling="1=0,5=145.0" DataType="short"/>
-				<AI Name="r_LOADERA_CHUCK_BLADDER"  Address="10" Scaling="1=0,5=145.0" DataType="short"/>
-				<AI Name="r_LOADERB_CHUCK_BLADDER"  Address="11" Scaling="1=0,5=145.0" DataType="short"/>
-				<AI Name="r_LOADERA_WS_BLADDER_PRESSURE"  Address="12" Scaling="1=0,5=145.0" DataType="short"/>
-				<AI Name="r_LOADERB_WS_BLADDER_PRESSURE"  Address="13" Scaling="1=0,5=145.0" DataType="short"/>
+				<AI Name="r_LOADERA_BERNOULLI_PRESSURE"  Address="8" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
+				<AI Name="r_LOADERB_BERNOULLI_PRESSURE"  Address="9" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
+				<AI Name="r_LOADERA_CHUCK_BLADDER"  Address="10" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
+				<AI Name="r_LOADERB_CHUCK_BLADDER"  Address="11" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
+				<AI Name="r_LOADERA_WS_BLADDER_PRESSURE"  Address="12" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
+				<AI Name="r_LOADERB_WS_BLADDER_PRESSURE"  Address="13" Scaling="0=3276.7, 145=16383.5" DataType="short"/>
 				<AI Name="r_SPUF_VAC"  Address="14" Scaling="1=0,5=-757.5" DataType="short"/>
-				<AI Name="r_LOADER_GasFlowSensor_VACUUM"  Address="15" Scaling="1=0,5=-101" DataType="short"/>
+				<AI Name="r_LOADER_GasFlowSensor_VACUUM"  Address="15" Scaling="0=3276.7,-757=16383.5" DataType="short"/>
 			</AIGroup>
 		</Ano_In>
 		<Ano_Out>

+ 10 - 0
CyberX8_RT/Devices/Loader/LoaderCRSAxisInterLock.cs

@@ -40,11 +40,21 @@ namespace CyberX8_RT.Devices.Loader
         /// <returns></returns>
         public bool CheckGotoPosition(string station)
         {
+            if (!_axis.IsSwitchOn)
+            {
+                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is switch off, Cannot execute GotoSavedPosition");
+                return false;
+            }
             if (!_axis.IsHomed)
             {
                 LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is not home, Cannot execute GotoSavedPosition");
                 return false;
             }
+            if (_axis.IsRun)
+            {
+                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is running, Cannot execute GotoSavedPosition");
+                return false;
+            }
             return true;
         }
     }

+ 21 - 39
CyberX8_RT/Devices/Loader/LoaderTiltAxisInterLock.cs

@@ -47,14 +47,14 @@ namespace CyberX8_RT.Devices.Loader
         /// <exception cref="NotImplementedException"></exception>
         public bool CheckGotoPosition(string station)
         {
-            if (!_axis.IsHomed)
+            if (!_axis.IsSwitchOn)
             {
-                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is not home, Cannot execute GotoSavedPosition");
+                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is switch off, Cannot execute GotoSavedPosition");
                 return false;
             }
-            if (!_axis.IsSwitchOn)
+            if (!_axis.IsHomed)
             {
-                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is switch off, Cannot execute GotoSavedPosition");
+                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Name} is not home, Cannot execute GotoSavedPosition");
                 return false;
             }
             if (_axis.IsRun)
@@ -96,54 +96,36 @@ namespace CyberX8_RT.Devices.Loader
             //判断shuttle是否在out位上
             JetAxisBase shuttleAxis = null;
             double shuttleAxisPosition = 0;
+            int wafersize = 0;
             if (Name == "TiltA")
             {
                 shuttleAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.ShuttleA");
-                if (shuttleAxis != null) 
-                {
-                    if (shuttleAxis.IsRun) //shuttle正在运动返回false
-                    {
-                        LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleA is running,  Cannot execute GotoSavedPosition");
-                        return false;
-                    }
-                    shuttleAxisPosition = shuttleAxis.MotionData.MotorPosition;
-                    if (!shuttleAxis.CheckPositionIsInStation(shuttleAxisPosition, $"OUT{SC.GetValue<int>("Loader1.SideAWaferSize")}"))
-                    {
-                        LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleA is not in out station,  Cannot execute GotoSavedPosition");
-                        return false;
-                    }
-                }
-                else //shuttle为空返回false
-                {
-                    LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleA is null,  Cannot execute GotoSavedPosition");
-                    return false;
-                }
-                
+                wafersize = SC.GetValue<int>("Loader1.SideAWaferSize");
             }
             else
             {
                 shuttleAxis = DEVICE.GetDevice<JetAxisBase>($"{Module}.ShuttleB");
-                shuttleAxis.WaferSize = SC.GetValue<int>("Loader1.SideBWaferSize");
-                if (shuttleAxis != null)
+                wafersize = SC.GetValue<int>("Loader1.SideBWaferSize");
+            }
+            if (shuttleAxis != null)
+            {
+                if (shuttleAxis.IsRun) //shuttle正在运动返回false
                 {
-                    if (shuttleAxis.IsRun) //shuttle正在运动返回false
-                    {
-                        LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleB is running,  Cannot execute GotoSavedPosition");
-                        return false;
-                    }
-                    shuttleAxisPosition = shuttleAxis.MotionData.MotorPosition;
-                    if (!shuttleAxis.CheckPositionIsInStation(shuttleAxisPosition, $"OUT{SC.GetValue<int>("Loader1.SideBWaferSize")}"))
-                    {
-                        LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleB is not in out station,  Cannot execute GotoSavedPosition");
-                        return false;
-                    }
+                    LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.{shuttleAxis.Name} is running,  Cannot execute GotoSavedPosition");
+                    return false;
                 }
-                else  //shuttle为空返回false
+                shuttleAxisPosition = shuttleAxis.MotionData.MotorPosition;
+                if (!shuttleAxis.CheckPositionIsInStation(shuttleAxisPosition, $"OUT{wafersize}"))
                 {
-                    LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.ShuttleB is null,  Cannot execute GotoSavedPosition");
+                    LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.{shuttleAxis.Name} is not in out station,  Cannot execute GotoSavedPosition");
                     return false;
                 }
             }
+            else //shuttle为空返回false
+            {
+                LOG.WriteLog(eEvent.ERR_LOADER, Module, $"{Module}.{shuttleAxis.Name} is null,  Cannot execute GotoSavedPosition");
+                return false;
+            }
             return true;
         }
        

+ 3 - 3
CyberX8_Simulator/CyberX8_Simulator.csproj

@@ -91,7 +91,7 @@
     <Compile Include="Devices\TMSimulatorServer.cs" />
     <Compile Include="Devices\VceSimulator.cs" />
     <Compile Include="Devices\VPASimulator.cs" />
-	<Compile Include="Devices\WagoSocketSimulator.cs" />
+    <Compile Include="Devices\WagoSocketSimulator.cs" />
     <Compile Include="Instances\SystemConfig.cs" />
     <Compile Include="JetChamber.cs" />
     <Compile Include="JetsiuTM.cs" />
@@ -149,7 +149,7 @@
     <Compile Include="Views\Simu_TMView.xaml.cs">
       <DependentUpon>Simu_TMView.xaml</DependentUpon>
     </Compile>
-	  <Compile Include="Views\WagoView.xaml.cs">
+    <Compile Include="Views\WagoView.xaml.cs">
       <DependentUpon>WagoView.xaml</DependentUpon>
     </Compile>
   </ItemGroup>
@@ -275,7 +275,7 @@
       <Generator>MSBuild:Compile</Generator>
       <SubType>Designer</SubType>
     </Page>
-	   <Page Include="Views\WagoView.xaml">
+    <Page Include="Views\WagoView.xaml">
       <SubType>Designer</SubType>
       <Generator>MSBuild:Compile</Generator>
     </Page>

+ 125 - 18
CyberX8_Simulator/Devices/WagoSocketSimulator.cs

@@ -1,11 +1,14 @@
-using MECF.Framework.Common.Net;
+using Aitex.Core.RT.Device;
+using MECF.Framework.Common.Net;
 using MECF.Framework.Simulator.Core.Driver;
 using System;
 using System.Collections.Generic;
+using System.Diagnostics.Eventing.Reader;
 using System.Linq;
 using System.Text;
 using System.Threading;
 using System.Threading.Tasks;
+using System.Timers;
 
 namespace CyberX8_Simulator.Devices
 {
@@ -15,14 +18,13 @@ namespace CyberX8_Simulator.Devices
         private const short WRITE_AO_STARTADDRESS = 0x0200;
 
         //键是名字,值是对应数据所在的位置  注意:要和WagoControlCfg里面的地址顺序对上
-        private Dictionary<string, int> DONameIndexDic = new Dictionary<string, int>
-        {{"DO0",0 },{"c_LoaderA_LS_Vacuum",1} };
-        private Dictionary<string, int> DINameIndexDic = new Dictionary<string, int>
-        {{"r_DRIP_TRAY_FLUID_DETECTION",19 },{"DI1",1} };
-        private Dictionary<string, int> AINameIndexDic = new Dictionary<string, int>
-        {{"r_LoaderA_LS_Vacuum_anlg",0 },{"AI1",1} };
-        private Dictionary<string, int> AONameIndexDic = new Dictionary<string, int>
-        {{"AO0",0 },{"AO1",1} };
+        private Dictionary<string, int> DONameIndexDic;
+
+        private Dictionary<string, int> DINameIndexDic;
+        
+        private Dictionary<string, int> AINameIndexDic;
+        
+        private Dictionary<string, int> AONameIndexDic;
 
         private IByteTransform byteTransform = new BigEndianByteTransformBase();
 
@@ -34,8 +36,6 @@ namespace CyberX8_Simulator.Devices
 
         private short[] AIShorts = new short[50];
 
-
-
         /// <summary>
         /// 写DO锁
         /// </summary>
@@ -47,16 +47,123 @@ namespace CyberX8_Simulator.Devices
 
         public WagoSocketSimulator(int port):base(port) 
         {
-            InitializeData();
-        }
-        
+            SimulatorCommManager.Instance.OnUpdateVariableValueChanged += UpdataDataCausedByOtherModule;
+            InitializeData(port);    
+        }  
+        
+        private void UpdataDataCausedByOtherModule(string name,bool value)
+        {
+            if (AINameIndexDic.ContainsKey(name))
+            {
+                if (value)
+                {
+                    AIShorts[AINameIndexDic[name]] = 0x2710;
+                }
+                else
+                {
+                    AIShorts[AINameIndexDic[name]] = 0x00;
+                }
+            }
+        }
         /// <summary>
-        /// 初始化数组数据
+        /// 初始化字典
         /// </summary>
-        private void InitializeData()
+        private void InitializeData(int port)
         {
-            AIShorts[0] = 0x1388;
-        }
+            DONameIndexDic = new Dictionary<string, int>
+            {{"c_System_Alarm",0 },
+             {"c_Pole_Red",1},
+             {"c_Pole_Amber",2},
+             {"c_Pole_Green",3},
+             {"c_Pole_Blue",4},
+             {"c_System_Alarm2",5},
+             {"c_BACKSIDE_PRESSURE_TEST",6},
+             {"c_VACUUM_TEST",7},
+             {"DO8",8},
+             {"DO9",9},
+             {"DO10",10},
+             {"DO11",11},
+             {"DO12",12},
+             {"DO13",13},
+             {"DO14",14},
+             {"DO15",15},
+             {"DO16",16},
+             {"DO17",17},
+             {"DO18",18},
+             {"DO19",19},
+             {"DO20",20},
+             {"DO21",21}};
+
+            DINameIndexDic = new Dictionary<string, int>
+            {{"r_Cassette_1_150",0 },
+             {"r_Cassette_1_100",1},
+             {"r_Cassette_1_200",2},
+             {"r_Cassette_2_150",3},
+             {"r_Cassette_2_100",4},
+             {"r_Cassette_2_200",5},
+             {"r_Cassette_3_150",6},
+             {"r_Cassette_3_100",7},
+             {"r_Cassette_3_200",8 },
+             {"r_Dummy_1_150",9},
+             {"r_Dummy_1_100",10},
+             {"r_Dummy_1_200",11},
+             {"r_Dummy_2_150",12},
+             {"r_Dummy_2_100",13},
+             {"r_Dummy_2_200",14},
+             {"DI15",15},
+             {"r_LoaderA_Wafer_Present",16},
+             {"r_LoaderB_Wafer_Present",17},
+             {"r_Cathode_Present",18},
+             {"DI19",19},
+             {"DI20",20},
+             {"DI21",21},
+             {"DI22",22},
+             {"DI23",23},
+             {"DI24",24},
+             {"DI25",25},
+             {"r_LOADERA_CRS_CURTAIN_1",26},
+             {"r_LOADERA_CRS_CURTAIN_2",27},
+             {"r_LOADERA_CRS_CURTAIN_3",28},
+             {"r_LOADERA_CRS_CURTAIN_4",29},
+             {"r_LOADERA_CRS_CURTAIN_5",30},
+             {"r_LOADERA_CRS_CURTAIN_6",31}};
+
+            AINameIndexDic = new Dictionary<string, int>
+            {{"AI1",0 },
+             {"AI2",1},
+             {"AI3",2},
+             {"AI4",3},
+             {"r_LoaderA_LS_Vacuum_anlg",4},
+             {"r_LoaderB_LS_Vacuum_anlg",5},
+             {"AI6",6},
+             {"r_LOADER_GasFlowSensor_FLOW",7},
+             {"r_LOADERA_BERNOULLI_PRESSURE",8},
+             {"r_LOADERB_BERNOULLI_PRESSURE",9},
+             {"r_LOADERA_CHUCK_BLADDER",10},
+             {"r_LOADERB_CHUCK_BLADDER",11},
+             {"r_LOADERA_WS_BLADDER_PRESSURE",12},
+             {"r_LOADERB_WS_BLADDER_PRESSURE",13},
+             {"r_SPUF_VAC",14},
+             {"r_LOADER_GasFlowSensor_VACUUM",15},};
+
+            AONameIndexDic = new Dictionary<string, int>
+            {{"AO1",0},
+             {"AO2",1},
+             {"AO3",2},
+             {"AO4",3},
+             {"AO5",4},
+             {"AO6",5},
+             {"AO7",6},
+             {"AO8",7},
+             {"AO9",8},
+             {"AO10",9},
+             {"AO11",10},
+             {"AO12",11},
+             {"AO13",12},
+             {"AO14",13},
+             {"AO15",14},
+             {"AO16",15}};
+            }
 
         #region 公共方法
         public void UpdataDOBytes(string name,int value)

+ 5 - 5
CyberX8_Simulator/Views/WagoView.xaml

@@ -23,23 +23,23 @@
             <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Left="120">
                 <Label Content="DO:" VerticalAlignment="Center"></Label>
                 <ComboBox  Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding DONameItems}" SelectedItem="{Binding DOSelectedItem}" />
-                <ComboBox  Width="60" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalInputSelected}" SelectedItem="{Binding DOInputValue}" HorizontalContentAlignment="Center"></ComboBox>
+                <ComboBox  Width="100" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalInputSelected}" SelectedItem="{Binding DOInputValue}" HorizontalContentAlignment="Center"></ComboBox>
                 <Button Content="DOInput" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetDOCommand}"/>
             </StackPanel>
             
-            <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Left="620">
+            <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Left="640">
                 <Label Content="DI:" VerticalAlignment="Center"></Label>
                 <ComboBox  Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding DINameItems}" SelectedItem="{Binding DISelectedItem}" />
-                <ComboBox  Width="60" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalInputSelected}" SelectedItem="{Binding DIInputValue}" HorizontalContentAlignment="Center"></ComboBox>
+                <ComboBox  Width="100" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" ItemsSource="{Binding DigitalInputSelected}" SelectedItem="{Binding DIInputValue}" HorizontalContentAlignment="Center"></ComboBox>
                 <Button Content="DIInput" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetDICommand}"/>
             </StackPanel>
             <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Top="50" Canvas.Left="120">
                 <Label Content="AO:" VerticalAlignment="Center"></Label>
                 <ComboBox  Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding AONameItems}" SelectedItem="{Binding AOSelectedItem}" />
                 <TextBox Text="{Binding AOInputValue,Mode=OneWayToSource}" Width="100" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"></TextBox>
-                <Button Content="AoInput" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetAOCommand}"/>
+                <Button Content="AOInput" Height="30" Width="100" Margin="5,10,0,0" Command="{Binding SetAOCommand}"/>
             </StackPanel>
-            <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Top="50" Canvas.Left="620">
+            <StackPanel Orientation="Horizontal" Width="500" Height="50" Canvas.Top="50" Canvas.Left="640">
                 <Label Content="AI:" VerticalAlignment="Center"></Label>
                 <ComboBox  Width="250" Height="30" VerticalContentAlignment="Center" ItemsSource="{Binding AINameItems}" SelectedItem="{Binding AISelectedItem}" />
                 <TextBox Text="{Binding AIInputValue,Mode=OneWayToSource}" Width="100" Height="30" Margin="5,0,0,0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center"></TextBox>

+ 90 - 8
CyberX8_Simulator/Views/WagoView.xaml.cs

@@ -173,7 +173,7 @@ namespace CyberX8_Simulator.Views
 
         public WagoViewModel(string str) : base("WagoViewModel")
         {
-            InitData();
+            
             
             SetDICommand = new DelegateCommand<object>(SetDIAction);
             SetDOCommand = new DelegateCommand<object>(SetDOAction);
@@ -183,6 +183,7 @@ namespace CyberX8_Simulator.Views
             int.TryParse(str, out int port);
             _sim = new WagoSocketSimulator(port);
             Init(_sim);
+            InitData(port);
         }
 
         private void SetDIAction(object obj)
@@ -202,21 +203,102 @@ namespace CyberX8_Simulator.Views
             _sim.UpdataAOShorts(AOSelectedItem, AOInputValue);
         }
 
-        private void InitData()
+        private void InitData(int port)
         {
             DigitalInputSelected = new ObservableCollection<int> { 0, 1 };
 
             DONameItems = new ObservableCollection<string>
-            { "DO1","DO2","DO3","c_LoaderA_LS_Vacuum","DO4","DO5","DO6","DO7","DO8"
-            ,"DO9","DO10","DO11","DO12","DO12","DO13","DO14","DO15","DO16","DO17","DO18",
-                "c_LOADERA_DOOR_UNLOCK","DO20","DO21"};
+            { "c_System_Alarm",
+              "c_Pole_Red",
+              "c_Pole_Amber",
+              "c_Pole_Green",
+              "c_Pole_Blue",
+              "c_System_Alarm2",
+              "c_BACKSIDE_PRESSURE_TEST",
+              "c_VACUUM_TEST",
+              "DO8",
+              "DO9",
+              "DO10",
+              "DO11",
+              "DO12",
+              "DO13",
+              "DO14",
+              "DO15",
+              "DO16",
+              "DO17",
+              "DO18",
+              "DO19",
+              "DO20",
+              "DO21"};
             
             DINameItems = new ObservableCollection<string>
-            { "r_Cassette_1_150","r_Cassette_1_100","r_DRIP_TRAY_FLUID_DETECTION"};
+            { "r_Cassette_1_150",
+              "r_Cassette_1_100",
+              "r_Cassette_1_200",
+              "r_Cassette_2_150",
+              "r_Cassette_2_100",
+              "r_Cassette_2_200",
+              "r_Cassette_3_150",
+              "r_Cassette_3_100",
+              "r_Cassette_3_200",
+              "r_Dummy_1_150",
+              "r_Dummy_1_100",
+              "r_Dummy_1_200",
+              "r_Dummy_2_150",
+              "r_Dummy_2_100",
+              "r_Dummy_2_100",
+              "D15",
+              "r_LoaderA_Wafer_Present",
+              "r_LoaderB_Wafer_Present",
+              "r_Cathode_Present",
+              "DI19",
+              "DI20",
+              "DI21",
+              "DI22",
+              "DI23",
+              "DI24",
+              "DI25",
+              "r_LOADERA_CRS_CURTAIN_1",
+              "r_LOADERA_CRS_CURTAIN_2",
+              "r_LOADERA_CRS_CURTAIN_3",
+              "r_LOADERA_CRS_CURTAIN_4",
+              "r_LOADERA_CRS_CURTAIN_5",
+              "r_LOADERA_CRS_CURTAIN_6",};
 
-            AONameItems = new ObservableCollection<string> { "AO0", "AO1" };
+            AONameItems = new ObservableCollection<string> 
+            { "AO1", 
+              "AO2",
+              "AO3",
+              "AO4",
+              "AO5",
+              "AO6",
+              "AO7",
+              "AO8",
+              "AO9",
+              "AO10",
+              "AO11",
+              "AO12",
+              "AO13",
+              "AO14",
+              "AO15",
+              "AO16"};
 
-            AINameItems = new ObservableCollection<string> { "r_LoaderA_LS_Vacuum_anlg", "AI1" };
+            AINameItems = new ObservableCollection<string> 
+            { "AI1", 
+              "AI2",
+              "AI3",
+              "r_LoaderA_LS_Vacuum_anlg",
+              "r_LoaderB_LS_Vacuum_anlg",
+              "AI6",
+              "r_LOADER_GasFlowSensor_FLOW",
+              "r_LOADERA_BERNOULLI_PRESSURE",
+              "r_LOADERB_BERNOULLI_PRESSURE",
+              "r_LOADERA_CHUCK_BLADDER",
+              "r_LOADERB_CHUCK_BLADDER",
+              "r_LOADERA_WS_BLADDER_PRESSURE",
+              "r_LOADERB_WS_BLADDER_PRESSURE",
+              "r_SPUF_VAC",
+              "r_LOADER_GasFlowSensor_VACUUM",};
         }
     }
 

+ 1 - 0
Framework/Common/Common.csproj

@@ -229,6 +229,7 @@
     <Compile Include="Device\BarcodeReader\BarcodeReaderConfig.cs" />
     <Compile Include="Device\BarcodeReader\BarcodeReaderDeviceConfig.cs" />
     <Compile Include="Device\BarcodeReader\BarcodeReaderSerialDevice.cs" />
+    <Compile Include="Device\Common\SimulatorCommManager.cs" />
     <Compile Include="Device\Festo\FestoCommand.cs" />
     <Compile Include="Device\Festo\FestoControllerCfg.cs" />
     <Compile Include="Device\Festo\FestoControllerCfgManager.cs" />

+ 2 - 0
Framework/UICore/E95Template/CenterView.xaml.cs

@@ -15,6 +15,7 @@ using System.Reflection;
 using Aitex.Core.RT.Log;
 using MECF.Framework.UI.Core.Applications;
 using Autofac;
+using Aitex.Core.RT.Device;
 
 namespace Aitex.Core.UI.View.Frame
 {
@@ -32,6 +33,7 @@ namespace Aitex.Core.UI.View.Frame
 
         public void CreateView(List<ViewItem> views )
         {
+            SimulatorCommManager.Instance.Initialize();
             foreach (ViewItem item in views)
             {
                 if (item.SubView == null || item.SubView.Count == 0)