| | |
| | | /// 发送的目标 |
| | | /// </summary> |
| | | public System.Net.IPEndPoint IPEndPoint; |
| | | /// <summary> |
| | | /// 设备类型 |
| | | /// </summary> |
| | | int deviceType = 58037; |
| | | |
| | | public Target() |
| | | { } |
| | |
| | | bytes [17] = 252; //源子网地址 0-254 |
| | | bytes [18] = 252;//源设备地址 0-254 |
| | | //源设备类型2位 |
| | | bytes [19] = (byte)(0xFF); |
| | | bytes [20] = (byte)(0xFC); |
| | | bytes [19] = (byte)(deviceType/256); |
| | | bytes [20] = (byte)(deviceType%256); |
| | | //操作码 |
| | | bytes [21] = (byte)((int)this.Command / 256); |
| | | bytes [22] = (byte)((int)this.Command % 256); |
| | |
| | | bytes [17] = 252; //源子网地址 0-254 |
| | | bytes [18] = 252;//源设备地址 0-254 |
| | | //源设备类型2位 |
| | | bytes [19] = (byte)(0xFF); |
| | | bytes [20] = (byte)(0xFC); |
| | | bytes [19] = (byte)(deviceType/256); |
| | | bytes [20] = (byte)(deviceType%256); |
| | | //操作码 |
| | | bytes [21] = (byte)((int)this.Command / 256); |
| | | bytes [22] = (byte)((int)this.Command % 256); |