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