Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docs/webusb/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,18 +357,17 @@ Param bitfield (`req_params.param`):

- Bits 0..2 (`0x1..0x7`): synchronization selector. Mapped values are: `1` => "1pps", `2` => "rx", `3` => "tx", `5` => "any", `7` => "none" (others => "off").
- Bit 3 (`0x8`): start/stop control. If set, stream is not started; if clear, stream is started.
- Bit 4 (`0x10`): enable RX extended statistics.

Examples: `param=15` => start stream; `param=31` - start stream with extended RX stats.
Examples: `param=15` => start stream without synchronization.

Expected response:

```json5
{
"result": 0,
"details": {
"wire-block-size": 0,
"wire-bursts": 0
"wire-block-size": 32768,
"wire-bursts": 1
}
}
```
Expand Down
Loading