更新库文件0e5a5180,修正DataTrace过于频繁的问题;修正TM PLC模拟器的一些问题。

This commit is contained in:
Liang Su 2024-01-12 18:16:21 +08:00
parent 4f1aa02d69
commit 59a05079bd
9 changed files with 4 additions and 5 deletions

View File

@ -1094,7 +1094,9 @@ namespace SicModules.Devices
protected override void HandleMonitor()
{
_doLLAtProcessPress.Value = _aiLLPressure != null && _aiLLPressure.Value <= _scLoadLockVacBasePressure.DoubleValue;
var targetLLAtProcPressure = _aiLLPressure != null && _aiLLPressure.Value <= _scLoadLockVacBasePressure.DoubleValue;
if (_doLLAtProcessPress.Value != targetLLAtProcPressure)
_doLLAtProcessPress.Value = targetLLAtProcPressure;
}
public void Reset()

View File

@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aitex.Core.RT.IOCore;
using Aitex.Core.Util;
using MECF.Framework.Common.IOCore;

View File

@ -283,7 +283,7 @@
Height="20"
Margin="0"
Padding="0"
Text="{Binding Path=FloatValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
Text="{Binding Path=ShortValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>