From a5f22676d46b71d32fdb5aca866da771ac5a6a1e Mon Sep 17 00:00:00 2001 From: HCL <1625932291@qq.com> Date: Wed, 15 May 2024 16:29:42 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BF=AE=E6=AD=A3PostProcess=E7=BB=93?= =?UTF-8?q?=E6=9D=9F=E5=90=8EDO-PostProcessRunning=E6=9C=AA=E8=AE=BE?= =?UTF-8?q?=E7=BD=AEfalse=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Modules/SicModules/PMs/PMModule.cs | 3 +++ .../SicModules/PMs/RecipeExecutions/PostProcess.cs | 3 +++ SicRT/ReleaseNotes.md | 11 ++++++++++- SicUI/Properties/AssemblyInfo.cs | 3 ++- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Modules/SicModules/PMs/PMModule.cs b/Modules/SicModules/PMs/PMModule.cs index 19957c7..13e50f8 100644 --- a/Modules/SicModules/PMs/PMModule.cs +++ b/Modules/SicModules/PMs/PMModule.cs @@ -1338,6 +1338,7 @@ namespace SicModules.PMs _pmInterLock.SetPMPreProcessRunning(false, out _); _pmInterLock.SetPMProcessRunning(false, out _); _pmInterLock.SetPMPostProcessRunning(false, out _); + return true; } @@ -1417,6 +1418,7 @@ namespace SicModules.PMs IsOnline = false; StopRamp(); + _pmInterLock.SetPMPreProcessRunning(false, out _); _pmInterLock.SetPMProcessRunning(false, out _); _pmInterLock.SetPMPostProcessRunning(false, out _); @@ -1447,6 +1449,7 @@ namespace SicModules.PMs else { StopRamp(); + _pmInterLock.SetPMPreProcessRunning(false, out _); _pmInterLock.SetPMProcessRunning(false, out _); _pmInterLock.SetPMPostProcessRunning(false, out _); diff --git a/Modules/SicModules/PMs/RecipeExecutions/PostProcess.cs b/Modules/SicModules/PMs/RecipeExecutions/PostProcess.cs index bda7c76..36677bd 100644 --- a/Modules/SicModules/PMs/RecipeExecutions/PostProcess.cs +++ b/Modules/SicModules/PMs/RecipeExecutions/PostProcess.cs @@ -251,6 +251,8 @@ namespace SicModules.PMs.RecipeExecutions return Result.FAIL; } + _pmInterLock.SetPMPostProcessRunning(false, out _); + Notify($"Finished ! Elapsed time: {(int)(_swTimer.ElapsedMilliseconds / 1000)} s"); _swTimer.Stop(); @@ -276,6 +278,7 @@ namespace SicModules.PMs.RecipeExecutions PmDevice.SetMfcStopRamp(PmDevice.GetMfcListByGroupName(MfcGroupName.All)); PmDevice.SetHeaterStopRamp(); PmDevice.SetRotationStopRamp(); + _pmInterLock.SetPMPostProcessRunning(false, out _); base.Abort(); } diff --git a/SicRT/ReleaseNotes.md b/SicRT/ReleaseNotes.md index 7bd3bcb..40591d9 100644 --- a/SicRT/ReleaseNotes.md +++ b/SicRT/ReleaseNotes.md @@ -3,9 +3,18 @@ Manual-GE 手动通用版(适用无EFEM设备) ------ +## Version 1.2.10.79 +**2024-05-15** + +- Bug修复 + - 1.修正PostProcess结束后DO-PostProcessRunning未设置false的问题 + - +- 新特性 + - + + ## Version 1.2.11.78 **2024-05-11** - - Bug修复 - 修正Charting中找不到PM1.Temp.Inner/Middle/Outer温度数据的问题 - 新特性 diff --git a/SicUI/Properties/AssemblyInfo.cs b/SicUI/Properties/AssemblyInfo.cs index 435b3bb..0cc670f 100644 --- a/SicUI/Properties/AssemblyInfo.cs +++ b/SicUI/Properties/AssemblyInfo.cs @@ -54,6 +54,7 @@ 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.2.11.78")] + +[assembly: AssemblyVersion("1.2.11.79")] [assembly: AssemblyInformationalVersion("手动通用版(无EFEM)")]