You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
945 B
39 lines
945 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HybirdFrameworkEntity
|
|
{
|
|
public class CMD3
|
|
{
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort Reserved1 { get; set; }
|
|
/// <summary>
|
|
/// 预留
|
|
/// </summary>
|
|
public ushort Reserved2 { get; set; }
|
|
/// <summary>
|
|
/// 类型
|
|
/// <para>0查询</para>
|
|
/// <para>1设置</para>
|
|
/// </summary>
|
|
public byte Type { get; set; }
|
|
/// <summary>
|
|
/// 设置/查询参数起始地址
|
|
/// </summary>
|
|
public uint SAddress { get; set; }
|
|
/// <summary>
|
|
/// 设置参数字节数
|
|
/// </summary>
|
|
public ushort SBytes { get; set; }
|
|
/// <summary>
|
|
/// 设置数据
|
|
/// </summary>
|
|
public byte[] SData { get; set; }
|
|
}
|
|
}
|