周立功换同星
This commit is contained in:
@@ -7,7 +7,10 @@
|
||||
private int _报文ID;
|
||||
private double _时间戳;
|
||||
private byte _长度;
|
||||
|
||||
private bool _FD;
|
||||
private bool _IsTx;
|
||||
private byte[] _Bytes = new byte[64];
|
||||
private string _报文 = "[]";
|
||||
|
||||
// 通道属性
|
||||
public byte 通道
|
||||
@@ -37,6 +40,32 @@
|
||||
set { SetProperty(ref _长度, value); }
|
||||
}
|
||||
|
||||
|
||||
// 是否FD帧
|
||||
public bool FD
|
||||
{
|
||||
get { return _FD; }
|
||||
set { SetProperty(ref _FD, value); }
|
||||
}
|
||||
|
||||
// 是否发送帧
|
||||
public bool IsTx
|
||||
{
|
||||
get { return _IsTx; }
|
||||
set { SetProperty(ref _IsTx, value); }
|
||||
}
|
||||
|
||||
// 原始字节数据
|
||||
public byte[] Bytes
|
||||
{
|
||||
get { return _Bytes; }
|
||||
set { SetProperty(ref _Bytes, value); }
|
||||
}
|
||||
|
||||
// 报文十六进制字符串
|
||||
public string 报文
|
||||
{
|
||||
get { return _报文; }
|
||||
set { SetProperty(ref _报文, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user