jtag add download bitstream

This commit is contained in:
2025-04-21 21:54:09 +08:00
parent acd6a68507
commit 70f96701f7
5 changed files with 261 additions and 34 deletions

View File

@@ -266,6 +266,9 @@ namespace WebProtocol
/// <param name="bodyData">数据</param>
public SendDataPackage(byte[] bodyData)
{
if (bodyData.Length > 256 * (32 / 8))
throw new Exception("The data of SendDataPackage can't over 256 * 32bits");
this.bodyData = bodyData;
_ = _reserved;