feat: 完善部分jtag边界扫描websocket代码

This commit is contained in:
alivender
2025-08-01 20:21:32 +08:00
parent 9fe0ee959f
commit 2e9e378457
6 changed files with 10 additions and 7 deletions

View File

@@ -336,7 +336,7 @@ public class UDPClientPool
$"Device {address} receive data is {retData.Length} bytes instead of 4 bytes"));
// Check result
var retCode = Convert.ToUInt32(Common.Number.BytesToUInt64(retData).Value);
var retCode = Convert.ToUInt32(Common.Number.BytesToUInt32(retData).Value);
if (Common.Number.BitsCheck(retCode, result, resultMask)) return true;
}
catch (Exception error)