You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
547 B
C#
29 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HslCommunication.ModBus
|
|
{
|
|
/// <summary>
|
|
/// 监视使用的数据缓存
|
|
/// </summary>
|
|
internal struct MonitorAddress
|
|
{
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public ushort Address;
|
|
|
|
/// <summary>
|
|
/// 原有的值
|
|
/// </summary>
|
|
public short ValueOrigin;
|
|
|
|
/// <summary>
|
|
/// 新的值
|
|
/// </summary>
|
|
public short ValueNew;
|
|
}
|
|
}
|