Pārlūkot izejas kodu

Added Auto Vent/Pump log for tracing trigger issue.

sangwq 1 gadu atpakaļ
vecāks
revīzija
61173b6866

+ 1 - 0
Venus/Venus_RT/Modules/EFEM/EfemSwapRoutine.cs

@@ -238,6 +238,7 @@ namespace Venus_RT.Modules.EFEM
                 }
             }
 
+            LOG.Write(eEvent.EV_EFEM_ROBOT, Module, $"NotifyLLDone() => {_targetModule}, Sequence Pattern{Singleton<RouteManager>.Instance.LLInOutPath}, unprocessed wafer:{waferStatus.unprocessed}, processed wafer: {waferStatus.processed},bAutoPump  = {bAutoPump}, Config Option:{_autoPumpOptInWafer},{_autoPumpOptOutWafer}");
             _llModule.PostMsg(bAutoPump ? LLEntity.MSG.AutoPump : LLEntity.MSG.EFEM_Exchange_Ready);
             
             return true;

+ 1 - 0
Venus/Venus_RT/Modules/TM/MFSwapRoutine.cs

@@ -268,6 +268,7 @@ namespace Venus_RT.Modules.TM
                 }
             }
 
+            LOG.Write(eEvent.INFO_TM, Module, $"NotifyLLDone() => {_targetModule}, Sequence Pattern{Singleton<RouteManager>.Instance.LLInOutPath}, unprocessed wafer:{waferStatus.unprocessed}, processed wafer: {waferStatus.processed},bAutoVent  = {bAutoVent}, Config Option:{_autoVentOptInWafer},{_autoVentOptOutWafer}");
             _llModule.PostMsg(bAutoVent ? LLEntity.MSG.AutoVent : LLEntity.MSG.TM_Exchange_Ready);
             return true;
         }