]> sigrok.org Git - sigrok-cli.git/blame - doc/sigrok-cli.1
show: add support for -i <fn> --show, provide details on input stream
[sigrok-cli.git] / doc / sigrok-cli.1
CommitLineData
c45dd41c 1.TH SIGROK\-CLI 1 "March 28, 2019"
43e5747a 2.SH "NAME"
53155b2f 3sigrok\-cli \- Command-line client for the sigrok software
43e5747a 4.SH "SYNOPSIS"
53155b2f 5.B sigrok\-cli [OPTIONS] [COMMAND]
43e5747a 6.SH "DESCRIPTION"
10d98b47
UH
7\fBsigrok\-cli\fP is a cross-platform command line utility for the
8\fBsigrok\fP software.
43e5747a 9.PP
10d98b47
UH
10It cannot display graphical output, but is still sufficient to run through
11the whole process of hardware initialization, acquisition, protocol decoding
12and saving the session.
43e5747a
UH
13.PP
14It is useful for running on remote or embedded systems, netbooks, PDAs,
15and for various other use-cases. It can display samples on standard output or
16save them in various file formats.
53155b2f 17.SH OPTIONS
43e5747a 18.TP
43e5747a
UH
19.B "\-h, \-\-help"
20Show a help text and exit.
21.TP
7949dca0
UH
22.B "\-V, \-\-version"
23Show
a0cfa735 24.B sigrok\-cli
6293db8a
UH
25version and the versions of libraries used.
26.TP
a0cfa735 27.B "\-L, \-\-list\-supported"
6293db8a 28Show information about supported hardware drivers, input file
7949dca0
UH
29formats, output file formats, and protocol decoders.
30.TP
c45dd41c
UH
31.B "\-\-list\-supported\-wiki"
32Show information about supported protocol decoders in MediaWiki syntax.
33This is generally only used by developers to easily update the list of
34supported protocol decoders in the sigrok wiki.
35.TP
b5ac81ad 36\fB\-d, \-\-driver\fP <drivername>
77525a84
GS
37Unless doing a global scan, users typically select one of the available
38drivers. This can speedup program start, and can avoid false matches for
39ambiguous configurations. Selecting a driver also allows to pass more
40driver specific options. Use the
c45dd41c 41.BR "\-L " ( "\-\-list\-supported" ")"
c1865eb5 42option to get a list of available drivers.
53155b2f 43.sp
10d98b47
UH
44Drivers can take options, in the form \fBkey=value\fP
45separated by colons.
46.sp
47Drivers communicating with hardware via a serial port always need the port
48specified as the \fBconn\fP option. For example, to use the
49Openbench Logic Sniffer:
53155b2f 50.sp
a0cfa735 51.RB " $ " "sigrok\-cli \-\-driver=ols:conn=/dev/ttyACM0" " [...]"
53155b2f 52.sp
10d98b47
UH
53Some USB devices don't use a unique VendorID/ProductID combination, and thus
54need that specified as well. This also uses the \fBconn\fP option, using
55either \fBVendorID.ProductID\fP or \fBbus.address\fP:
53155b2f 56.sp
a0cfa735
UH
57USB \fBVendorID.ProductID\fP example:
58.sp
59.RB " $ " "sigrok\-cli \-\-driver=uni\-t\-ut61e:conn=1a86.e008" " [...]"
60.sp
61USB \fBbus.address\fP example:
62.sp
63.RB " $ " "sigrok\-cli \-\-driver=uni\-t\-ut61e:conn=4.6" " [...]"
43e5747a 64.TP
b20ea789
GS
65.B "\-D, \-\-dont\-scan"
66Do not automatically scan for device drivers in the absence of a
67.BR "\-d " ( "\-\-driver" )
68specification.
69.TP
a0cfa735 70.BR "\-c, \-\-config " <deviceoption>
53155b2f 71A colon-separated list of device options, where each option takes the form
1b4b6a7c 72.BR key=value .
10d98b47
UH
73For example, to set the samplerate to 1MHz on a device supported by the
74fx2lafw driver, you might specify
1b4b6a7c 75.sp
a0cfa735 76.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
1b4b6a7c 77.sp
53155b2f
BV
78Samplerate is an option common to most logic analyzers. The argument specifies
79the samplerate in Hz. You can also specify the samplerate in kHz, MHz or GHz.
1b4b6a7c
UH
80The following are all equivalent:
81.sp
a0cfa735 82.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1000000" " [...]"
1b4b6a7c 83.sp
a0cfa735 84.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
1b4b6a7c 85.sp
a0cfa735 86.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config \(dqsamplerate=1 MHz\(dq" " [...]"
1b4b6a7c 87.TP
43e5747a 88.BR "\-i, \-\-input\-file " <filename>
a0cfa735
UH
89Load input from a file instead of a hardware device. You can specify
90"-" to use stdin as input. If the
43e5747a 91.B \-\-input\-format
a0cfa735 92option is not supplied, sigrok\-cli attempts to autodetect the file format of
43e5747a 93the input file.
a0cfa735
UH
94.sp
95Example for loading a sigrok session file:
96.sp
97.RB " $ " "sigrok\-cli \-i example.sr" " [...]"
98.sp
99Example for loading a WAV file (autodetection of input format):
100.sp
101.RB " $ " "sigrok\-cli \-i example.wav" " [...]
102.sp
103Example for loading a VCD file from stdin (autodetection of input format):
104.sp
105.RB " $ " "cat example.vcd | sigrok\-cli \-i \-" " [...]
43e5747a
UH
106.TP
107.BR "\-I, \-\-input\-format " <format>
108When loading an input file, assume it's in the specified format. If this
109option is not supplied (in addition to
110.BR \-\-input\-file ),
943d0c08 111sigrok-cli attempts to autodetect the file format of the input file. Use the
a0cfa735 112.BR "\-L " ( "\-\-list\-supported" ")"
10d98b47
UH
113option to see a list of available input formats.
114.sp
115The format name may optionally be followed by a colon-separated list of
116options, where each option takes the form
943d0c08 117.BR "key=value" .
a0cfa735
UH
118.sp
119Example for loading a binary file with options:
120.sp
121.RB " $ " "sigrok\-cli \-i example.bin"
122.br
123.BR " \-I binary:numchannels=4:samplerate=1mhz" " [...]"
43e5747a
UH
124.TP
125.BR "\-o, \-\-output\-file " <filename>
126Save output to a file instead of writing it to stdout. The default format
127used when saving is the sigrok session file format. This can be changed with
128the
76ae913d 129.B \-\-output\-format
7949dca0 130option.
a0cfa735
UH
131.sp
132Example for saving data in the sigrok session format:
133.sp
134.RB " $ " "sigrok\-cli " "[...] " "\-o example.sr"
7949dca0 135.TP
a0cfa735 136.BR "\-O, \-\-output\-format " <format>
7949dca0 137Set the output format to use. Use the
a0cfa735 138.BR "\-L " ( "\-\-list\-supported" ")"
10d98b47
UH
139option to see a list of available output formats.
140.sp
141The format name may optionally be followed by a colon-separated list of
142options, where each option takes the form
7949dca0
UH
143.BR "key=value" .
144.sp
c1865eb5 145For example, the
7949dca0
UH
146.B bits
147or
148.B hex
149formats, 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
a0cfa735 150.B "\-O hex:width=128"
7949dca0
UH
151will display 128 bits per line, in hexadecimal:
152.sp
10d98b47
UH
153 0:ffff ffff ffff ffff ffff ffff ffff ffff
154 1:ff00 ff00 ff00 ff00 ff00 ff00 ff00 ff00
7949dca0 155.sp
029d73fe 156The lines always start with the channel number (or name, if defined), followed by a colon. If no format is specified, it defaults to
7949dca0
UH
157.BR bits:width=64 ,
158like this:
159.sp
10d98b47
UH
160 0:11111111 11111111 11111111 11111111 [...]
161 1:11111111 00000000 11111111 00000000 [...]
a0cfa735 162.sp
f5735c5e 163Example for saving data in the CSV format with options:
a0cfa735 164.sp
f5735c5e
GS
165.RB " $ " "sigrok\-cli " "[...] " "\-o example.csv \-O csv:dedup:header=false"
166.sp
167Notice that boolean options are \fBtrue\fP when no value gets specified.
43e5747a 168.TP
3dfbfbc8 169.BR "\-C, \-\-channels " <channellist>
029d73fe 170A comma-separated list of channels to be used in the session.
43e5747a 171.sp
029d73fe 172Note that sigrok always names the channels according to how they're shown on
a0cfa735 173the enclosure of the hardware. If your logic analyzer numbers the channels 0\-15,
029d73fe 174that's how you must specify them with this option. An oscilloscope's channels
10d98b47 175would generally be referred to as "CH1", "CH2", and so on.
029d73fe 176Use the \fB\-\-show\fP option to see a list of channel names for your device.
53155b2f 177.sp
029d73fe
UH
178The default is to use all the channels available on a device. You can name
179a channel like this:
43e5747a 180.BR "1=CLK" .
029d73fe 181A range of channels can also be given, in the form
43e5747a
UH
182.BR "1\-5" .
183.sp
184Example:
185.sp
10d98b47
UH
186.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
187.br
3dfbfbc8 188.B " \-\-channels 1=CLK,2\-4,7"
43e5747a
UH
189.br
190 CLK:11111111 11111111 11111111 11111111 [...]
191 2:11111111 11111111 11111111 11111111 [...]
192 3:11111111 11111111 11111111 11111111 [...]
193 4:11111111 11111111 11111111 11111111 [...]
194 7:11111111 11111111 11111111 11111111 [...]
195.sp
196The comma-separated list is processed from left to right, i.e. items farther
197to the right override previous items. For example
bf836932 198.B "1=CS,CS=MISO"
029d73fe 199will set the name of channel 1 to
43e5747a 200.BR "MISO" .
43e5747a 201.TP
ca50f4b3 202.BR "\-g, \-\-channel\-group "<channel\ group>
a0cfa735
UH
203Specify the channel group to operate on. Some devices organize channels into
204groups, the settings of which can only be changed as a group. The list of
205channel groups, if any, is displayed with the \fB\-\-show\fP command.
206.sp
f5735c5e 207Examples:
a0cfa735
UH
208.sp
209.RB " $ " "sigrok\-cli \-g CH1" " [...]"
f5735c5e
GS
210.sp
211.RB " $ " "sigrok\-cli \-d demo \-g Logic \-c pattern=graycode" " [...]"
31f9318a 212.TP
43e5747a
UH
213.BR "\-t, \-\-triggers " <triggerlist>
214A comma-separated list of triggers to use, of the form
029d73fe
UH
215.BR "<channel>=<trigger>" .
216You can use the name or number of the channel, and the trigger itself is a
43e5747a
UH
217series of characters:
218.sp
219.BR "0 or 1" :
220A low or high value on the pin.
221.br
222.BR "r or f" :
223A rising or falling value on the pin. An
224.B r
225effectively corresponds to
226.BR 01 .
227.br
f99038b4 228.BR "e" :
85f2ddbb 229Any kind of change on a pin (either a rising or a falling edge).
43e5747a 230.sp
10d98b47
UH
231Not every device supports all of these trigger types. Use the \fB\-\-show\fP
232command to see which triggers your device supports.
43e5747a 233.TP
a0cfa735 234.BR "\-w, \-\-wait\-trigger"
10d98b47
UH
235Don't output any sample data (even if it's actually received from the
236hardware) before the trigger condition is met. In other words, do not output
237any pre-trigger data. This option is useful if you don't care about the data
238that came before the trigger (but the hardware delivers this data to sigrok
239nonetheless).
43e5747a 240.TP
b5ac81ad 241.BR "\-P, \-\-protocol\-decoders " <list>
85f2ddbb
UH
242This option allows the user to specify a comma-separated list of protocol
243decoders to be used in this session. The decoders are specified by their
244ID, as shown in the
a0cfa735 245.BR "\-L " ( "\-\-list\-supported" ")"
85f2ddbb
UH
246output.
247.sp
248Example:
249.sp
250 $
b5ac81ad 251.B "sigrok\-cli \-i <file.sr> \-P i2c"
85f2ddbb
UH
252.sp
253Each protocol decoder can optionally be followed by a colon-separated list
254of options, where each option takes the form
255.BR "key=value" .
256.sp
257Example:
258.sp
259 $
8791df07
UH
260.B "sigrok\-cli \-i <file.sr> "
261.br
262.B " \-P uart:baudrate=115200:parity_type=odd"
85f2ddbb
UH
263.sp
264The list of supported options depends entirely on the protocol decoder. Every
265protocol decoder has different options it supports.
266.sp
267Any "options" specified for a protocol decoder which are not actually
029d73fe 268supported options, will be interpreted as being channel name/number assignments.
85f2ddbb
UH
269.sp
270Example:
271.sp
272 $
273.B "sigrok\-cli \-i <file.sr>"
274.br
bf836932 275.B " \-P spi:wordsize=9:miso=1:mosi=5:clk=3:cs=0"
85f2ddbb
UH
276.sp
277In this example,
278.B wordsize
279is an option supported by the
280.B spi
281protocol decoder. Additionally, the user tells sigrok to decode the SPI
029d73fe 282protocol using channel 1 as MISO signal for SPI, channel 5 as MOSI, channel 3
bf836932 283as CLK, and channel 0 as CS# signal.
65f903f9
GS
284.sp
285Notice that the
286.B sigrok\-cli
287application does not support "name matching". Instead it's assumed that the
288traces in the input stream match the order of the decoder's input signals,
289or that users explicitly specify the input channel to decoder signal mapping.
e4b7762f
GS
290.br
291.sp
292When multiple decoders are specified in the same
293.BR -P
294option, they will be stacked on top of each other in the specified order.
295.sp
296Example:
297.sp
298 $
299.B "sigrok\-cli \-i <file.sr> \-P i2c,eeprom24xx"
300.br
301 $
302.B "sigrok\-cli \-i <file.sr> \-P uart:baudrate=31250,midi"
303.sp
304When multiple
305.BR -P
306options are specified, each of them creates one decoder stack, which
307executes in parallel to other decoder stacks.
308.sp
309Example:
310.sp
311 $
312.B "sigrok\-cli \-i <file.sr> \-P uart:tx=D0:rx=D1 \-P timing:data=D2"
313.sp
85f2ddbb 314.TP
b6bd032d 315.BR "\-A, \-\-protocol\-decoder\-annotations " <annotations>
87d526cf
UH
316By default, all annotation output of all protocol decoders is
317shown. With this option a specific decoder's annotations can be selected for
318display, by specifying the decoder ID:
7fb87027
BV
319.sp
320 $
a0cfa735 321.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid \-A i2c"
7fb87027 322.sp
6c5438fe 323If a protocol decoder has multiple annotation classes, you can also specify
790b0261 324which one of them to show by specifying its short description like this:
7fb87027
BV
325.sp
326 $
b5ac81ad 327.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
7fb87027 328.br
a0cfa735 329.B " \-A i2c=data\-read"
790b0261 330.sp
6c5438fe 331Select multiple annotation classes by separating them with a colon:
790b0261
BV
332.sp
333 $
334.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
335.br
a0cfa735 336.B " \-A i2c=data\-read:data\-write"
7fb87027 337.sp
b7360ee6
GS
338Annotation row names will resolve to their respective list of classes.
339Row and class names can be used in combination. When names are ambiguous
340then class names take precedence.
341.sp
342 $
343.B "sigrok\-cli \-i <file.sr> \-P i2c"
344.br
345.B " \-A i2c=addr\-data:warnings"
346.sp
347You can also select multiple protocol decoders, with optionally selected
348annotation classes each, by separating them with commas:
7fb87027
BV
349.sp
350 $
b5ac81ad 351.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
7fb87027 352.br
a0cfa735 353.B " \-A i2c=data\-read:data\-write,edid"
7fb87027 354.TP
b0f1c540
BV
355.BR "\-M, \-\-protocol\-decoder\-meta " <pdname>
356When given, show protocol decoder meta output instead of annotations.
357The argument is the name of the decoder whose meta output to show.
358.sp
359 $
360.B "sigrok\-cli \-i <file.sr> \-M i2c"
361.sp
362Not every decoder generates meta output.
363.TP
364.BR "\-B, \-\-protocol\-decoder\-binary " <binaryspec>
365When given, decoder "raw" data of various kinds is written to stdout instead
366of annotations (this could be raw binary UART/SPI bytes, or WAV files, PCAP
367files, PNG files, or anything else; this is entirely dependent on the
368decoder and what kinds of binary output make sense for that decoder).
369.sp
370No other information is printed to stdout, so this is
371suitable for piping into other programs or saving to a file.
372.sp
373Protocol decoders that support binary output publish a list of binary
374classes, for example the UART decoder might have "TX" and "RX". To
375select TX for output, the argument to this option would be:
376.sp
377 $
378.B "sigrok\-cli \-i <file.sr> \-B uart=tx"
379.br
380.sp
381If only the protocol decoder is specified, without binary class, all classes
382are written to stdout:
383.sp
384 $
385.B "sigrok\-cli \-i <file.sr> \-B uart"
386.sp
387(this is only useful in rare cases, generally you would specify a certain
388binary class you're interested in)
389.sp
390Not every decoder generates binary output.
391.TP
8aafb57c
GS
392.BR "\-\-protocol\-decoder\-samplenum
393When given, decoder annotations will include sample numbers, too.
394This allows consumers to receive machine readable timing information.
395.TP
53155b2f 396.BR "\-l, \-\-loglevel " <level>
a0cfa735 397Set the libsigrok and libsigrokdecode loglevel. At the moment \fBsigrok\-cli\fP
10d98b47 398doesn't support setting the two loglevels independently. The higher the
53155b2f
BV
399number, the more debug output will be printed. Valid loglevels are:
400.sp
401\fB0\fP None
402.br
403\fB1\fP Error
404.br
405\fB2\fP Warnings
406.br
407\fB3\fP Informational
408.br
409\fB4\fP Debug
410.br
411\fB5\fP Spew
412.TP
413.B "\-\-show"
414.br
10d98b47
UH
415Show information about the selected option. For example, to see options for a
416connected fx2lafw device:
53155b2f
BV
417.sp
418 $
419.B "sigrok\-cli \-\-driver fx2lafw \-\-show
420.sp
10d98b47
UH
421In order to properly get device options for your hardware, some drivers might
422need a serial port specified:
53155b2f
BV
423.sp
424 $
425.B "sigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-show
426.sp
a8b4041a 427This also works for protocol decoders, input modules and output modules:
53155b2f
BV
428.sp
429 $
ad6520c4
BV
430.B "sigrok\-cli \-\-protocol\-decoders i2c \-\-show
431 $
a8b4041a
BV
432.B "sigrok\-cli \-\-input\-format csv \-\-show
433 $
ad6520c4 434.B "sigrok\-cli \-\-output\-format bits \-\-show
53155b2f 435.TP
b5ac81ad
BV
436.B "\-\-scan"
437Scan for devices that can be detected automatically.
10d98b47
UH
438.sp
439Example:
440.sp
441 $
b5ac81ad 442.B "sigrok\-cli \-\-scan
10d98b47
UH
443.br
444 The following devices were found:
445.br
a0cfa735 446 demo \- Demo device with 12 channels: D0 D1 D2 D3 D4 D5 D6 D7 A0 A1 A2 A3
10d98b47 447.br
a0cfa735 448 fx2lafw:conn=3.26 \- CWAV USBee SX with 8 channels: 0 1 2 3 4 5 6 7
10d98b47
UH
449.sp
450However, not all devices are auto-detectable (e.g. serial port based ones).
451For those you'll have to provide a \fBconn\fP option, see above.
452.sp
453 $
a0cfa735 454.B "sigrok\-cli \-\-driver digitek\-dt4000zc:conn=/dev/ttyUSB0 \-\-scan
10d98b47
UH
455.br
456 The following devices were found:
457.br
029d73fe 458 Digitek DT4000ZC with 1 channel: P1
53155b2f 459.TP
43e5747a
UH
460.BR "\-\-time " <ms>
461Sample for
462.B <ms>
10d98b47
UH
463milliseconds, then quit.
464.sp
bf836932
UH
465You can optionally follow the number by \fBs\fP to specify the time to
466sample in seconds.
10d98b47
UH
467.sp
468For example,
43e5747a
UH
469.B "\-\-time 2s"
470will sample for two seconds.
471.TP
472.BR "\-\-samples " <numsamples>
473Acquire
474.B <numsamples>
475samples, then quit.
10d98b47
UH
476.sp
477You can optionally follow the number by \fBk\fP, \fBm\fP, or \fBg\fP to
478specify the number of samples in kilosamples, megasamples, or gigasamples,
479respectively.
480.sp
481For example,
482.B "\-\-samples 3m"
483will acquire 3000000 samples.
43e5747a 484.TP
66d5560b
UH
485.BR "\-\-frames " <numframes>
486Acquire
487.B <numframes>
488frames, then quit.
489.TP
43e5747a
UH
490.BR "\-\-continuous"
491Sample continuously until stopped. Not all devices support this.
2d73284e 492.TP
62a64762
BV
493.BR "\-\-get " <variable>
494Get the value of
495.B <variable>
496from the specified device and print it.
497.TP
2d73284e 498.BR "\-\-set"
b8656921
UH
499Set one or more variables specified with the \fB\-\-config\fP option, without
500doing any acquisition.
53155b2f 501.SH EXAMPLES
b8656921
UH
502In order to get exactly 100 samples from the connected fx2lafw-supported logic
503analyzer hardware, run the following command:
43e5747a 504.TP
53155b2f 505.B " sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
43e5747a 506.TP
2d73284e 507If you want to sample data for 3 seconds (3000 ms), use:
43e5747a 508.TP
53155b2f 509.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3000"
43e5747a
UH
510.TP
511Alternatively, you can also use:
512.TP
53155b2f 513.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3s"
43e5747a 514.TP
029d73fe 515To capture data from the first 4 channels using the Openbench Logic Sniffer lasting 100ms at 10 MHz starting at the trigger condition
53155b2f 5160:high, 1:rising, 2:low, 3:high, use:
43e5747a 517.TP
53155b2f 518.nf
b5ac81ad 519\fBsigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-config samplerate=10m \\\fP
3dfbfbc8 520\fB\-\-output\-format bits \-\-channels 0\-3 \-\-wait\-trigger \\\fP
b5ac81ad 521\fB\-\-triggers 0=1,1=r,2=0,3=1 \-\-time 100\fP
2d73284e
BV
522.TP
523To turn on internal logging on a Lascar EL-USB series device:
524.TP
525\fBsigrok\-cli \-\-driver lascar\-el\-usb:conn=10c4.0002 \\\fP
b8656921 526\fB\-\-config datalog=on \-\-set\fP
43e5747a
UH
527.SH "EXIT STATUS"
528.B sigrok\-cli
529exits with 0 on success, 1 on most failures.
530.SH "SEE ALSO"
b5ac81ad 531\fBpulseview\fP(1)
43e5747a 532.SH "BUGS"
10d98b47
UH
533Please report any bugs via Bugzilla
534.RB "(" http://sigrok.org/bugzilla ")"
535or on the sigrok\-devel mailing list
43e5747a
UH
536.RB "(" sigrok\-devel@lists.souceforge.net ")."
537.SH "LICENSE"
538.B sigrok\-cli
539is covered by the GNU General Public License (GPL). Some portions are
540licensed under the "GPL v2 or later", some under "GPL v3 or later".
541.SH "AUTHORS"
542Please see the individual source code files.
543.PP
544This manual page was written by Uwe Hermann <uwe@hermann\-uwe.de>.
545It is licensed under the terms of the GNU GPL (version 2 or later).