-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPacketFlashWriteReq.cs
92 lines (81 loc) · 2.71 KB
/
PacketFlashWriteReq.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
K5TOOL UV-K5 toolkit utility
Copyright (C) 2024 qrp73
https://github.com/qrp73/K5TOOL
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
using System;
using System.Linq;
namespace K5TOOL.Packets
{
public abstract class PacketFlashWriteReq : Packet
{
public PacketFlashWriteReq(byte[] rawData)
: base(rawData)
{
if (base.HdrSize < 12)
{
Console.WriteLine("WARN: {0}.HdrSize = {1}, expected >= {2}", this.GetType().Name, base.HdrSize, 12);
}
}
public virtual uint SequenceId
{
get { return (uint)(_rawData[4] | (_rawData[5] << 8) | (_rawData[6] << 16) | (_rawData[7] << 24)); }
}
public virtual ushort ChunkNumber
{
get { return (ushort)(_rawData[8] | (_rawData[9] << 8)); }
}
public virtual ushort ChunkCount
{
get { return (ushort)(_rawData[10] | (_rawData[11] << 8)); }
}
public virtual ushort Size
{
get { return (ushort)(_rawData[12] | (_rawData[13] << 8)); }
}
public virtual ushort Padding
{
get { return (ushort)(_rawData[14] | (_rawData[15] << 8)); }
}
public virtual byte[] Data
{
get
{
var data = new byte[Size];
Array.Copy(_rawData, 16, data, 0, data.Length);
return data;
}
}
public override string ToString()
{
return string.Format(
"{0} {{\n" +
" HdrSize={1}\n" +
" SequenceId=0x{2:x8}\n" +
" ChunkNumber=0x{3:x4}\n" +
" ChunkCount=0x{4:x4}\n" +
" Size=0x{5:x2}\n" +
" Padding=0x{6:x4}\n" +
" Data={7}\n" +
"}}",
this.GetType().Name,
HdrSize,
SequenceId,
ChunkNumber,
ChunkCount,
Size,
Padding,
Utils.ToHex(Data));
}
}
}