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