From 5941a3d1e3fffafa3350c90f1bfee93c5e51aeca Mon Sep 17 00:00:00 2001 From: Gustave Monce Date: Sat, 11 Apr 2026 16:57:25 +0200 Subject: [PATCH] Simplify write param command --- .../UnifiedFlashingPlatformTransport.WriteParam.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/UnifiedFlashingPlatform/UnifiedFlashingPlatformTransport.WriteParam.cs b/UnifiedFlashingPlatform/UnifiedFlashingPlatformTransport.WriteParam.cs index 5630912..635e69b 100644 --- a/UnifiedFlashingPlatform/UnifiedFlashingPlatformTransport.WriteParam.cs +++ b/UnifiedFlashingPlatform/UnifiedFlashingPlatformTransport.WriteParam.cs @@ -18,11 +18,7 @@ namespace UnifiedFlashingPlatform // 4 empty bytes here Buffer.BlockCopy(Data, 0, Request, 15, Data.Length); - byte[]? Response = ExecuteRawMethod(Request); - if ((Response == null) || (Response.Length < 0x10)) - { - return; - } + ExecuteRawMethod(Request); } // TODO: Verify proper functionality