Skip to content

Commit 5941a3d

Browse files
committed
Simplify write param command
1 parent e2ffcb7 commit 5941a3d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

UnifiedFlashingPlatform/UnifiedFlashingPlatformTransport.WriteParam.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ public void WriteParam(string Param, byte[] Data)
1818
// 4 empty bytes here
1919
Buffer.BlockCopy(Data, 0, Request, 15, Data.Length);
2020

21-
byte[]? Response = ExecuteRawMethod(Request);
22-
if ((Response == null) || (Response.Length < 0x10))
23-
{
24-
return;
25-
}
21+
ExecuteRawMethod(Request);
2622
}
2723

2824
// TODO: Verify proper functionality

0 commit comments

Comments
 (0)