Skip to content

Commit

Permalink
xorimage: 16進数パターンの最大長を0x200 (=512Bytes)に拡大
Browse files Browse the repository at this point in the history
YAMAHA WLX302のパターン長が0x200 (512Bytes)ある為
  • Loading branch information
musashino205 committed Apr 15, 2024
1 parent 940acf8 commit 738c2c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware-wintools/Tools/xorimage/xorimage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private int
SetupPattern(out byte[] ptnAry, out int p_len)
{
FileInfo ptnBinInfo = null;
int hexPtn_maxLen = 0x100;
int hexPtn_maxLen = 0x200;

ptnAry = null;
p_len = 0;
Expand Down

0 comments on commit 738c2c6

Please sign in to comment.