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.
18 lines
569 B
C#
18 lines
569 B
C#
//using System.Threading.Tasks;
|
|
|
|
namespace Mesnac.DeviceAdapter.Fuchs
|
|
{
|
|
public class MessagePack
|
|
{
|
|
//public byte m_BeginChar = 0X00; //发送数据1
|
|
//public byte m_SecondChar = 0X04; //发送数据2
|
|
public byte[] m_pData = null; //发送数据
|
|
//public byte m_ThirdChar = 0X0A; //发送数据3
|
|
//public byte m_Channel = 0X02; //通道号
|
|
|
|
//public byte m_beginChar1 = 0xBB; //开始包
|
|
//public byte[] m_pData =null; //发送数据
|
|
//public byte m_EndChar1 = 0x0D; //结束包
|
|
}
|
|
}
|