1 .TH SIGROK\-CLI 1 "October 22, 2018"
3 sigrok\-cli \- Command-line client for the sigrok software
5 .B sigrok\-cli [OPTIONS] [COMMAND]
7 \fBsigrok\-cli\fP is a cross-platform command line utility for the
10 It cannot display graphical output, but is still sufficient to run through
11 the whole process of hardware initialization, acquisition, protocol decoding
12 and saving the session.
14 It is useful for running on remote or embedded systems, netbooks, PDAs,
15 and for various other use-cases. It can display samples on standard output or
16 save them in various file formats.
20 Show a help text and exit.
25 version and the versions of libraries used.
27 .B "\-L, \-\-list\-supported"
28 Show information about supported hardware drivers, input file
29 formats, output file formats, and protocol decoders.
31 \fB\-d, \-\-driver\fP <drivername>
32 A driver must always be selected (unless doing a global scan). Use the
33 .BR "\-L " ( "\-\-list-supported" ")"
34 option to get a list of available drivers.
36 Drivers can take options, in the form \fBkey=value\fP
39 Drivers communicating with hardware via a serial port always need the port
40 specified as the \fBconn\fP option. For example, to use the
41 Openbench Logic Sniffer:
43 .RB " $ " "sigrok\-cli \-\-driver=ols:conn=/dev/ttyACM0" " [...]"
45 Some USB devices don't use a unique VendorID/ProductID combination, and thus
46 need that specified as well. This also uses the \fBconn\fP option, using
47 either \fBVendorID.ProductID\fP or \fBbus.address\fP:
49 USB \fBVendorID.ProductID\fP example:
51 .RB " $ " "sigrok\-cli \-\-driver=uni\-t\-ut61e:conn=1a86.e008" " [...]"
53 USB \fBbus.address\fP example:
55 .RB " $ " "sigrok\-cli \-\-driver=uni\-t\-ut61e:conn=4.6" " [...]"
57 .BR "\-c, \-\-config " <deviceoption>
58 A colon-separated list of device options, where each option takes the form
60 For example, to set the samplerate to 1MHz on a device supported by the
61 fx2lafw driver, you might specify
63 .RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
65 Samplerate is an option common to most logic analyzers. The argument specifies
66 the samplerate in Hz. You can also specify the samplerate in kHz, MHz or GHz.
67 The following are all equivalent:
69 .RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1000000" " [...]"
71 .RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
73 .RB " $ " "sigrok\-cli \-d fx2lafw \-\-config \(dqsamplerate=1 MHz\(dq" " [...]"
75 .BR "\-i, \-\-input\-file " <filename>
76 Load input from a file instead of a hardware device. You can specify
77 "-" to use stdin as input. If the
79 option is not supplied, sigrok\-cli attempts to autodetect the file format of
82 Example for loading a sigrok session file:
84 .RB " $ " "sigrok\-cli \-i example.sr" " [...]"
86 Example for loading a WAV file (autodetection of input format):
88 .RB " $ " "sigrok\-cli \-i example.wav" " [...]
90 Example for loading a VCD file from stdin (autodetection of input format):
92 .RB " $ " "cat example.vcd | sigrok\-cli \-i \-" " [...]
94 .BR "\-I, \-\-input\-format " <format>
95 When loading an input file, assume it's in the specified format. If this
96 option is not supplied (in addition to
97 .BR \-\-input\-file ),
98 sigrok-cli attempts to autodetect the file format of the input file. Use the
99 .BR "\-L " ( "\-\-list\-supported" ")"
100 option to see a list of available input formats.
102 The format name may optionally be followed by a colon-separated list of
103 options, where each option takes the form
106 Example for loading a binary file with options:
108 .RB " $ " "sigrok\-cli \-i example.bin"
110 .BR " \-I binary:numchannels=4:samplerate=1mhz" " [...]"
112 .BR "\-o, \-\-output\-file " <filename>
113 Save output to a file instead of writing it to stdout. The default format
114 used when saving is the sigrok session file format. This can be changed with
116 .B \-\-output\-format
119 Example for saving data in the sigrok session format:
121 .RB " $ " "sigrok\-cli " "[...] " "\-o example.sr"
123 .BR "\-O, \-\-output\-format " <format>
124 Set the output format to use. Use the
125 .BR "\-L " ( "\-\-list\-supported" ")"
126 option to see a list of available output formats.
128 The format name may optionally be followed by a colon-separated list of
129 options, where each option takes the form
136 formats, for an ASCII bit or ASCII hexadecimal display, can take a "width" option, specifying the number of samples (in bits) to display per line. Thus
137 .B "\-O hex:width=128"
138 will display 128 bits per line, in hexadecimal:
140 0:ffff ffff ffff ffff ffff ffff ffff ffff
141 1:ff00 ff00 ff00 ff00 ff00 ff00 ff00 ff00
143 The lines always start with the channel number (or name, if defined), followed by a colon. If no format is specified, it defaults to
147 0:11111111 11111111 11111111 11111111 [...]
148 1:11111111 00000000 11111111 00000000 [...]
150 Example for saving data in the CSV format with options:
152 .RB " $ " "sigrok\-cli " "[...] " "\-o example.csv \-O csv:dedup:header=false"
154 Notice that boolean options are \fBtrue\fP when no value gets specified.
156 .BR "\-C, \-\-channels " <channellist>
157 A comma-separated list of channels to be used in the session.
159 Note that sigrok always names the channels according to how they're shown on
160 the enclosure of the hardware. If your logic analyzer numbers the channels 0\-15,
161 that's how you must specify them with this option. An oscilloscope's channels
162 would generally be referred to as "CH1", "CH2", and so on.
163 Use the \fB\-\-show\fP option to see a list of channel names for your device.
165 The default is to use all the channels available on a device. You can name
168 A range of channels can also be given, in the form
173 .RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
175 .B " \-\-channels 1=CLK,2\-4,7"
177 CLK:11111111 11111111 11111111 11111111 [...]
178 2:11111111 11111111 11111111 11111111 [...]
179 3:11111111 11111111 11111111 11111111 [...]
180 4:11111111 11111111 11111111 11111111 [...]
181 7:11111111 11111111 11111111 11111111 [...]
183 The comma-separated list is processed from left to right, i.e. items farther
184 to the right override previous items. For example
186 will set the name of channel 1 to
189 .BR "\-g, \-\-channel\-group "<channel\ group>
190 Specify the channel group to operate on. Some devices organize channels into
191 groups, the settings of which can only be changed as a group. The list of
192 channel groups, if any, is displayed with the \fB\-\-show\fP command.
196 .RB " $ " "sigrok\-cli \-g CH1" " [...]"
198 .RB " $ " "sigrok\-cli \-d demo \-g Logic \-c pattern=graycode" " [...]"
200 .BR "\-t, \-\-triggers " <triggerlist>
201 A comma-separated list of triggers to use, of the form
202 .BR "<channel>=<trigger>" .
203 You can use the name or number of the channel, and the trigger itself is a
204 series of characters:
207 A low or high value on the pin.
210 A rising or falling value on the pin. An
212 effectively corresponds to
216 Any kind of change on a pin (either a rising or a falling edge).
218 Not every device supports all of these trigger types. Use the \fB\-\-show\fP
219 command to see which triggers your device supports.
221 .BR "\-w, \-\-wait\-trigger"
222 Don't output any sample data (even if it's actually received from the
223 hardware) before the trigger condition is met. In other words, do not output
224 any pre-trigger data. This option is useful if you don't care about the data
225 that came before the trigger (but the hardware delivers this data to sigrok
228 .BR "\-P, \-\-protocol\-decoders " <list>
229 This option allows the user to specify a comma-separated list of protocol
230 decoders to be used in this session. The decoders are specified by their
232 .BR "\-L " ( "\-\-list\-supported" ")"
238 .B "sigrok\-cli \-i <file.sr> \-P i2c"
240 Each protocol decoder can optionally be followed by a colon-separated list
241 of options, where each option takes the form
247 .B "sigrok\-cli \-i <file.sr> "
249 .B " \-P uart:baudrate=115200:parity_type=odd"
251 The list of supported options depends entirely on the protocol decoder. Every
252 protocol decoder has different options it supports.
254 Any "options" specified for a protocol decoder which are not actually
255 supported options, will be interpreted as being channel name/number assignments.
260 .B "sigrok\-cli \-i <file.sr>"
262 .B " \-P spi:wordsize=9:miso=1:mosi=5:clk=3:cs=0"
266 is an option supported by the
268 protocol decoder. Additionally, the user tells sigrok to decode the SPI
269 protocol using channel 1 as MISO signal for SPI, channel 5 as MOSI, channel 3
270 as CLK, and channel 0 as CS# signal.
274 application does not support "name matching". Instead it's assumed that the
275 traces in the input stream match the order of the decoder's input signals,
276 or that users explicitly specify the input channel to decoder signal mapping.
279 When multiple decoders are specified in the same
281 option, they will be stacked on top of each other in the specified order.
286 .B "sigrok\-cli \-i <file.sr> \-P i2c,eeprom24xx"
289 .B "sigrok\-cli \-i <file.sr> \-P uart:baudrate=31250,midi"
293 options are specified, each of them creates one decoder stack, which
294 executes in parallel to other decoder stacks.
299 .B "sigrok\-cli \-i <file.sr> \-P uart:tx=D0:rx=D1 \-P timing:data=D2"
302 .BR "\-A, \-\-protocol\-decoder\-annotations " <annotations>
303 By default, only the stack's topmost protocol decoder's annotation output is
304 shown. With this option another decoder's annotation can be selected for
305 display, by specifying its ID:
308 .B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid \-A i2c"
310 If a protocol decoder has multiple annotations, you can also specify
311 which one of them to show by specifying its short description like this:
314 .B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
316 .B " \-A i2c=data\-read"
318 Select multiple annotations by separating them with a colon:
321 .B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
323 .B " \-A i2c=data\-read:data\-write"
325 You can also select multiple protocol decoders, with an optional selected
326 annotation each, by separating them with commas:
329 .B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
331 .B " \-A i2c=data\-read:data\-write,edid"
333 .BR "\-M, \-\-protocol\-decoder\-meta " <pdname>
334 When given, show protocol decoder meta output instead of annotations.
335 The argument is the name of the decoder whose meta output to show.
338 .B "sigrok\-cli \-i <file.sr> \-M i2c"
340 Not every decoder generates meta output.
342 .BR "\-B, \-\-protocol\-decoder\-binary " <binaryspec>
343 When given, decoder "raw" data of various kinds is written to stdout instead
344 of annotations (this could be raw binary UART/SPI bytes, or WAV files, PCAP
345 files, PNG files, or anything else; this is entirely dependent on the
346 decoder and what kinds of binary output make sense for that decoder).
348 No other information is printed to stdout, so this is
349 suitable for piping into other programs or saving to a file.
351 Protocol decoders that support binary output publish a list of binary
352 classes, for example the UART decoder might have "TX" and "RX". To
353 select TX for output, the argument to this option would be:
356 .B "sigrok\-cli \-i <file.sr> \-B uart=tx"
359 If only the protocol decoder is specified, without binary class, all classes
360 are written to stdout:
363 .B "sigrok\-cli \-i <file.sr> \-B uart"
365 (this is only useful in rare cases, generally you would specify a certain
366 binary class you're interested in)
368 Not every decoder generates binary output.
370 .BR "\-\-protocol\-decoder\-samplenum
371 When given, decoder annotations will include sample numbers, too.
372 This allows consumers to receive machine readable timing information.
374 .BR "\-l, \-\-loglevel " <level>
375 Set the libsigrok and libsigrokdecode loglevel. At the moment \fBsigrok\-cli\fP
376 doesn't support setting the two loglevels independently. The higher the
377 number, the more debug output will be printed. Valid loglevels are:
385 \fB3\fP Informational
393 Show information about the selected option. For example, to see options for a
394 connected fx2lafw device:
397 .B "sigrok\-cli \-\-driver fx2lafw \-\-show
399 In order to properly get device options for your hardware, some drivers might
400 need a serial port specified:
403 .B "sigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-show
405 This also works for protocol decoders, input modules and output modules:
408 .B "sigrok\-cli \-\-protocol\-decoders i2c \-\-show
410 .B "sigrok\-cli \-\-input\-format csv \-\-show
412 .B "sigrok\-cli \-\-output\-format bits \-\-show
415 Scan for devices that can be detected automatically.
420 .B "sigrok\-cli \-\-scan
422 The following devices were found:
424 demo \- Demo device with 12 channels: D0 D1 D2 D3 D4 D5 D6 D7 A0 A1 A2 A3
426 fx2lafw:conn=3.26 \- CWAV USBee SX with 8 channels: 0 1 2 3 4 5 6 7
428 However, not all devices are auto-detectable (e.g. serial port based ones).
429 For those you'll have to provide a \fBconn\fP option, see above.
432 .B "sigrok\-cli \-\-driver digitek\-dt4000zc:conn=/dev/ttyUSB0 \-\-scan
434 The following devices were found:
436 Digitek DT4000ZC with 1 channel: P1
441 milliseconds, then quit.
443 You can optionally follow the number by \fBs\fP to specify the time to
448 will sample for two seconds.
450 .BR "\-\-samples " <numsamples>
455 You can optionally follow the number by \fBk\fP, \fBm\fP, or \fBg\fP to
456 specify the number of samples in kilosamples, megasamples, or gigasamples,
461 will acquire 3000000 samples.
463 .BR "\-\-frames " <numframes>
469 Sample continuously until stopped. Not all devices support this.
471 .BR "\-\-get " <variable>
474 from the specified device and print it.
477 Set one or more variables specified with the \fB\-\-config\fP option, without
478 doing any acquisition.
480 In order to get exactly 100 samples from the connected fx2lafw-supported logic
481 analyzer hardware, run the following command:
483 .B " sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
485 If you want to sample data for 3 seconds (3000 ms), use:
487 .B " sigrok\-cli \-\-driver fx2lafw \-\-time 3000"
489 Alternatively, you can also use:
491 .B " sigrok\-cli \-\-driver fx2lafw \-\-time 3s"
493 To capture data from the first 4 channels using the Openbench Logic Sniffer lasting 100ms at 10 MHz starting at the trigger condition
494 0:high, 1:rising, 2:low, 3:high, use:
497 \fBsigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-config samplerate=10m \\\fP
498 \fB\-\-output\-format bits \-\-channels 0\-3 \-\-wait\-trigger \\\fP
499 \fB\-\-triggers 0=1,1=r,2=0,3=1 \-\-time 100\fP
501 To turn on internal logging on a Lascar EL-USB series device:
503 \fBsigrok\-cli \-\-driver lascar\-el\-usb:conn=10c4.0002 \\\fP
504 \fB\-\-config datalog=on \-\-set\fP
507 exits with 0 on success, 1 on most failures.
511 Please report any bugs via Bugzilla
512 .RB "(" http://sigrok.org/bugzilla ")"
513 or on the sigrok\-devel mailing list
514 .RB "(" sigrok\-devel@lists.souceforge.net ")."
517 is covered by the GNU General Public License (GPL). Some portions are
518 licensed under the "GPL v2 or later", some under "GPL v3 or later".
520 Please see the individual source code files.
522 This manual page was written by Uwe Hermann <uwe@hermann\-uwe.de>.
523 It is licensed under the terms of the GNU GPL (version 2 or later).