[MECF.Framework.RT.EquipmentLibrary]

1.PMModuleBase增加单独关闭PSU和SCR的抽象方法
This commit is contained in:
LAPTOP-9VQH4NI5\LCR 2023-05-05 11:24:18 +08:00
parent 94cc390c98
commit 09b285b74e
4 changed files with 18 additions and 2 deletions

View File

@ -14,4 +14,4 @@ using log4net.Config;
[assembly: ComVisible(false)]
[assembly: Guid("6E6A3BE1-681F-49BE-982E-29C4C1D08D49")]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: AssemblyVersion("2.1.0.4")]
[assembly: AssemblyVersion("2.1.0.5")]

View File

@ -90,6 +90,10 @@ namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.PMs
// 2704
public abstract bool CloseHeaterEnable(out string reason);
public abstract bool ClosePSUEnable(out string reason);
public abstract bool CloseSCREnable(out string reason);
public abstract bool EnableHeater(bool enable, out string reason);
public abstract bool CheckHeaterEnable();

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.3.4")]
[assembly: AssemblyVersion("2.0.3.5")]
//[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -1,5 +1,17 @@
# 各种电子元器件,接口定义 和具体 实现
## Version 2.0.3.5
***2023-05-05***
- Bug
- 无
- 新特性
- PMModuleBase增加单独关闭PSU和SCR的抽象方法
## Version 2.0.3.4
***2023-04-26***