1.修正PostProcess结束后DO-PostProcessRunning未设置false的问题

This commit is contained in:
HCL 2024-05-15 16:29:42 +08:00
parent 205bb975cd
commit a5f22676d4
4 changed files with 18 additions and 2 deletions

View File

@ -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 _);

View File

@ -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();
}

View File

@ -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温度数据的问题
- 新特性

View File

@ -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")]