maybe fix bug: download bitstream failed

This commit is contained in:
2025-04-23 20:22:49 +08:00
parent 5ea541ef4b
commit 4e752d4c9e
5 changed files with 229 additions and 54 deletions

View File

@@ -20,10 +20,10 @@ namespace WebProtocol
/// <summary> Package Burst Type </summary>
public enum BurstType
{
/// <summary> Extended Type </summary>
ExtendBurst = 0b00,
/// <summary> Fixed Type </summary>
FixedBurst = 0b01,
FixedBurst = 0b00,
/// <summary> Extended Type </summary>
ExtendBurst = 0b01,
}