Browse Source

atm模式移除PM控压

lixiang 1 year ago
parent
commit
ef3841f212

+ 1 - 1
Venus/Venus_MainPages/Unity/ContextMenuManager.cs

@@ -78,7 +78,7 @@ namespace Venus_MainPages.Unity
              
                 InvokeClient.Instance.Service.DoOperation(ele.Invoke, CurrentSlot.ModuleID, CurrentSlot.SlotID);
             }
-            catch (Exception ex)
+            catch 
             {
                 //LOG.Write(ex);
             }

+ 2 - 2
Venus/Venus_MainPages/Unity/RealtimeProvider.cs

@@ -81,9 +81,9 @@ namespace Venus_MainPages.Unity
 
                 return _rootNode;
             }
-            catch (Exception ex)
+            catch
             {
-                //LOG.Write(ex);
+                
             }
             
 

+ 1 - 1
Venus/Venus_MainPages/Unity/SystemConfigProvider.cs

@@ -18,7 +18,7 @@ namespace Venus_MainPages.Unity
     {
         private static SystemConfigProvider _Instance = null;
         private int _currentChamberNumber = 0;
-        private int? _systemtype = null;
+        //private int? _systemtype = null;
         private string[] _InstalledModules=null;
         private List<string> _modulelist = new List<string>() { "EFEM", "TM", "LLA", "LLB", "SETM", "VCE1", "PMA", "PMB", "PMC", "PMD", "PME", "PMF" };
         public static SystemConfigProvider Instance

+ 1 - 1
Venus/Venus_MainPages/ViewModels/ButterflyValveViewModel.cs

@@ -20,7 +20,7 @@ namespace Venus_MainPages.ViewModels
         private bool m_IsPositionMode;
         private int m_SetValue;
         private int? m_FeedBackValue;
-        private List<string> m_RtDataKeys;
+        //private List<string> m_RtDataKeys;
         private Dictionary<string, object> m_RtDataValues;
 
         #endregion

+ 2 - 2
Venus/Venus_MainPages/ViewModels/EfemViewModel.cs

@@ -82,8 +82,8 @@ namespace Venus_MainPages.ViewModels
         private WaferRobotXAction m_Robot1XAction;
         private WaferRobotTAction m_Robot2TAction;
         private WaferRobotXAction m_Robot2XAction;
-        int arm1oldWaferStatus = 100;
-        int arm2oldWaferStatus = 100;
+        //int arm1oldWaferStatus = 100;
+        //int arm2oldWaferStatus = 100;
         private RobotPosition m_CurrentRobotPosition;
 
         #endregion

+ 1 - 1
Venus/Venus_MainPages/ViewModels/FaViewModel.cs

@@ -373,7 +373,7 @@ namespace Venus_MainPages.ViewModels
                 Poll();
                 UpdateConfig();
             }
-            catch (Exception ex)
+            catch
             {
             }
 

+ 1 - 1
Venus/Venus_MainPages/ViewModels/PlatformViewModel.cs

@@ -305,7 +305,7 @@ namespace Venus_MainPages.ViewModels
         private DelegateCommand _ClosePendulumValveCommand;
         public DelegateCommand ClosePendulumValveCommand =>
             _ClosePendulumValveCommand ?? (_ClosePendulumValveCommand = new DelegateCommand(OnClosePendulumValve));
-        private DelegateCommand _OpenButterflyValveViewCommand;
+        //private DelegateCommand _OpenButterflyValveViewCommand;
         //public DelegateCommand OpenButterflyValveViewCommand =>
         //    _OpenButterflyValveViewCommand ?? (_OpenButterflyValveViewCommand = new DelegateCommand(OnOpenButterflyValveView));
         private DelegateCommand _OpenTurboPumpCommand;

+ 1 - 1
Venus/Venus_MainPages/ViewModels/ProcessHistoryViewModel.cs

@@ -47,7 +47,7 @@ namespace Venus_MainPages.ViewModels
         ObservableCollection<PdKeyData> _PdKeyDataObservation = new ObservableCollection<PdKeyData>();
         public List<string> RecipesAdd = new List<string>();
         public List<SolidColorBrush> solidColorBrushes = new List<SolidColorBrush>();
-        DateTime currentTime;
+        //DateTime currentTime;
         private RecipeItem selectedRecipeItem;
 
         #endregion

+ 1 - 1
Venus/Venus_MainPages/ViewModels/RFCalibrationViewModel.cs

@@ -193,7 +193,7 @@ namespace Venus_MainPages.ViewModels
                 var tableData = CustomXmlSerializer.Deserialize<List<NotifiableCalibrationTableItem>>(scValue);
                 TableData = new ObservableCollection<NotifiableCalibrationTableItem>(tableData);
             }
-            catch (Exception ex)
+            catch
             {
                 InitTableData(item);
             }

+ 1 - 1
Venus/Venus_MainPages/ViewModels/RecipeViewModel.cs

@@ -1094,7 +1094,7 @@ namespace Venus_MainPages.ViewModels
                 foreach (var x in recipeStep.LstUnit.ToList())
                 {
                     Type unitType = x.GetType();
-                    bool isIgnore = false;
+                    //bool isIgnore = false;
 
                     Binding checkbinding = null;
                     foreach (PropertyInfo propertyInfo in unitType.GetProperties())

+ 1 - 1
Venus/Venus_RT/Modules/EFEM/EFEMAlignRoutine.cs

@@ -49,7 +49,7 @@ namespace Venus_RT.Modules.EFEM
                 {
                     angle = Convert.ToDouble(objs[2]);
                 }
-                catch (Exception ex)
+                catch
                 {
                     LOG.Write(eEvent.ERR_EFEM_COMMON_FAILED, Module, $"ALIAN PARAMETER IS ILLEGAL ");
                 }

+ 5 - 0
Venus/Venus_RT/Modules/PMs/PMEntity.cs

@@ -1237,6 +1237,11 @@ namespace Venus_RT.Modules.PMs
         }
         private bool FnControlPressure(object[] param)
         {
+            if (RouteManager.IsATMMode)
+            {
+                return true;
+            }
+
             if (IsOnline == true && fsm.State!=(int)PMState.Processing && fsm.State!=(int)PMState.Clean)
             {
                 if (startControlPressureFlag == true)