]> sigrok.org Git - sigrok-cli.git/blame_incremental - doc/sigrok-cli.1
session: make group of 'static' vars more visible
[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>
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
41.BR "\-L " ( "\-\-list\-supported" ")"
42option to get a list of available drivers.
43.sp
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:
50.sp
51.RB " $ " "sigrok\-cli \-\-driver=ols:conn=/dev/ttyACM0" " [...]"
52.sp
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:
56.sp
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" " [...]"
64.TP
65.B "\-D, \-\-dont\-scan"
66Do not automatically scan for device drivers in the absence of a
67.BR "\-d " ( "\-\-driver" )
68specification.
69.TP
70.BR "\-c, \-\-config " <deviceoption>
71A colon-separated list of device options, where each option takes the form
72.BR key=value .
73For example, to set the samplerate to 1MHz on a device supported by the
74fx2lafw driver, you might specify
75.sp
76.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
77.sp
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.
80The following are all equivalent:
81.sp
82.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1000000" " [...]"
83.sp
84.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config samplerate=1m" " [...]"
85.sp
86.RB " $ " "sigrok\-cli \-d fx2lafw \-\-config \(dqsamplerate=1 MHz\(dq" " [...]"
87.TP
88.BR "\-i, \-\-input\-file " <filename>
89Load input from a file instead of a hardware device. You can specify
90"-" to use stdin as input. If the
91.B \-\-input\-format
92option is not supplied, sigrok\-cli attempts to autodetect the file format of
93the input file.
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 \-" " [...]
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 ),
111sigrok-cli attempts to autodetect the file format of the input file. Use the
112.BR "\-L " ( "\-\-list\-supported" ")"
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
117.BR "key=value" .
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" " [...]"
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
129.B \-\-output\-format
130option.
131.sp
132Example for saving data in the sigrok session format:
133.sp
134.RB " $ " "sigrok\-cli " "[...] " "\-o example.sr"
135.TP
136.BR "\-O, \-\-output\-format " <format>
137Set the output format to use. Use the
138.BR "\-L " ( "\-\-list\-supported" ")"
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
143.BR "key=value" .
144.sp
145For example, the
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
150.B "\-O hex:width=128"
151will display 128 bits per line, in hexadecimal:
152.sp
153 0:ffff ffff ffff ffff ffff ffff ffff ffff
154 1:ff00 ff00 ff00 ff00 ff00 ff00 ff00 ff00
155.sp
156The lines always start with the channel number (or name, if defined), followed by a colon. If no format is specified, it defaults to
157.BR bits:width=64 ,
158like this:
159.sp
160 0:11111111 11111111 11111111 11111111 [...]
161 1:11111111 00000000 11111111 00000000 [...]
162.sp
163Example for saving data in the CSV format with options:
164.sp
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.
168.TP
169.BR "\-C, \-\-channels " <channellist>
170A comma-separated list of channels to be used in the session.
171.sp
172Note that sigrok always names the channels according to how they're shown on
173the enclosure of the hardware. If your logic analyzer numbers the channels 0\-15,
174that's how you must specify them with this option. An oscilloscope's channels
175would generally be referred to as "CH1", "CH2", and so on.
176Use the \fB\-\-show\fP option to see a list of channel names for your device.
177.sp
178The default is to use all the channels available on a device. You can name
179a channel like this:
180.BR "1=CLK" .
181A range of channels can also be given, in the form
182.BR "1\-5" .
183.sp
184Example:
185.sp
186.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
187.br
188.B " \-\-channels 1=CLK,2\-4,7"
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
198.B "1=CS,CS=MISO"
199will set the name of channel 1 to
200.BR "MISO" .
201.TP
202.BR "\-g, \-\-channel\-group "<channel\ group>
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
207Examples:
208.sp
209.RB " $ " "sigrok\-cli \-g CH1" " [...]"
210.sp
211.RB " $ " "sigrok\-cli \-d demo \-g Logic \-c pattern=graycode" " [...]"
212.TP
213.BR "\-t, \-\-triggers " <triggerlist>
214A comma-separated list of triggers to use, of the form
215.BR "<channel>=<trigger>" .
216You can use the name or number of the channel, and the trigger itself is a
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
228.BR "e" :
229Any kind of change on a pin (either a rising or a falling edge).
230.sp
231Not every device supports all of these trigger types. Use the \fB\-\-show\fP
232command to see which triggers your device supports.
233.TP
234.BR "\-w, \-\-wait\-trigger"
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).
240.TP
241.BR "\-P, \-\-protocol\-decoders " <list>
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
245.BR "\-L " ( "\-\-list\-supported" ")"
246output.
247.sp
248Example:
249.sp
250 $
251.B "sigrok\-cli \-i <file.sr> \-P i2c"
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 $
260.B "sigrok\-cli \-i <file.sr> "
261.br
262.B " \-P uart:baudrate=115200:parity_type=odd"
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
268supported options, will be interpreted as being channel name/number assignments.
269.sp
270Example:
271.sp
272 $
273.B "sigrok\-cli \-i <file.sr>"
274.br
275.B " \-P spi:wordsize=9:miso=1:mosi=5:clk=3:cs=0"
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
282protocol using channel 1 as MISO signal for SPI, channel 5 as MOSI, channel 3
283as CLK, and channel 0 as CS# signal.
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.
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
314.TP
315.BR "\-A, \-\-protocol\-decoder\-annotations " <annotations>
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:
319.sp
320 $
321.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid \-A i2c"
322.sp
323If a protocol decoder has multiple annotation classes, you can also specify
324which one of them to show by specifying its short description like this:
325.sp
326 $
327.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
328.br
329.B " \-A i2c=data\-read"
330.sp
331Select multiple annotation classes by separating them with a colon:
332.sp
333 $
334.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
335.br
336.B " \-A i2c=data\-read:data\-write"
337.sp
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:
349.sp
350 $
351.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
352.br
353.B " \-A i2c=data\-read:data\-write,edid"
354.TP
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
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
396.BR "\-l, \-\-loglevel " <level>
397Set the libsigrok and libsigrokdecode loglevel. At the moment \fBsigrok\-cli\fP
398doesn't support setting the two loglevels independently. The higher the
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
415Show information about the selected option. For example, to see options for a
416connected fx2lafw device:
417.sp
418 $
419.B "sigrok\-cli \-\-driver fx2lafw \-\-show
420.sp
421In order to properly get device options for your hardware, some drivers might
422need a serial port specified:
423.sp
424 $
425.B "sigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-show
426.sp
427This also works for protocol decoders, input modules and output modules:
428.sp
429 $
430.B "sigrok\-cli \-\-protocol\-decoders i2c \-\-show
431 $
432.B "sigrok\-cli \-\-input\-format csv \-\-show
433 $
434.B "sigrok\-cli \-\-output\-format bits \-\-show
435.TP
436.B "\-\-scan"
437Scan for devices that can be detected automatically.
438.sp
439Example:
440.sp
441 $
442.B "sigrok\-cli \-\-scan
443.br
444 The following devices were found:
445.br
446 demo \- Demo device with 12 channels: D0 D1 D2 D3 D4 D5 D6 D7 A0 A1 A2 A3
447.br
448 fx2lafw:conn=3.26 \- CWAV USBee SX with 8 channels: 0 1 2 3 4 5 6 7
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 $
454.B "sigrok\-cli \-\-driver digitek\-dt4000zc:conn=/dev/ttyUSB0 \-\-scan
455.br
456 The following devices were found:
457.br
458 Digitek DT4000ZC with 1 channel: P1
459.TP
460.BR "\-\-time " <ms>
461Sample for
462.B <ms>
463milliseconds, then quit.
464.sp
465You can optionally follow the number by \fBs\fP to specify the time to
466sample in seconds.
467.sp
468For example,
469.B "\-\-time 2s"
470will sample for two seconds.
471.TP
472.BR "\-\-samples " <numsamples>
473Acquire
474.B <numsamples>
475samples, then quit.
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.
484.TP
485.BR "\-\-frames " <numframes>
486Acquire
487.B <numframes>
488frames, then quit.
489.TP
490.BR "\-\-continuous"
491Sample continuously until stopped. Not all devices support this.
492.TP
493.BR "\-\-get " <variable>
494Get the value of
495.B <variable>
496from the specified device and print it.
497.TP
498.BR "\-\-set"
499Set one or more variables specified with the \fB\-\-config\fP option, without
500doing any acquisition.
501.SH EXAMPLES
502In order to get exactly 100 samples from the connected fx2lafw-supported logic
503analyzer hardware, run the following command:
504.TP
505.B " sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
506.TP
507If you want to sample data for 3 seconds (3000 ms), use:
508.TP
509.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3000"
510.TP
511Alternatively, you can also use:
512.TP
513.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3s"
514.TP
515To capture data from the first 4 channels using the Openbench Logic Sniffer lasting 100ms at 10 MHz starting at the trigger condition
5160:high, 1:rising, 2:low, 3:high, use:
517.TP
518.nf
519\fBsigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-config samplerate=10m \\\fP
520\fB\-\-output\-format bits \-\-channels 0\-3 \-\-wait\-trigger \\\fP
521\fB\-\-triggers 0=1,1=r,2=0,3=1 \-\-time 100\fP
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
526\fB\-\-config datalog=on \-\-set\fP
527.SH "EXIT STATUS"
528.B sigrok\-cli
529exits with 0 on success, 1 on most failures.
530.SH "SEE ALSO"
531\fBpulseview\fP(1)
532.SH "BUGS"
533Please report any bugs via Bugzilla
534.RB "(" http://sigrok.org/bugzilla ")"
535or on the sigrok\-devel mailing list
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).