]> sigrok.org Git - sigrok-cli.git/blame - doc/sigrok-cli.1
Actually exit when a fatal error is logged
[sigrok-cli.git] / doc / sigrok-cli.1
CommitLineData
10d98b47 1.TH SIGROK\-CLI 1 "Feb 05, 2013"
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
24.B sigrok-cli
25version, and information about supported hardware drivers, input file
26formats, output file formats, and protocol decoders.
27.TP
b5ac81ad
BV
28\fB\-d, \-\-driver\fP <drivername>
29A driver must always be selected (unless doing a global scan). Use the
30\fB-V\fP option to get a list of available drivers.
53155b2f 31.sp
10d98b47
UH
32Drivers can take options, in the form \fBkey=value\fP
33separated by colons.
34.sp
35Drivers communicating with hardware via a serial port always need the port
36specified as the \fBconn\fP option. For example, to use the
37Openbench Logic Sniffer:
53155b2f
BV
38.sp
39.RB " $ " "sigrok\-cli \-\-driver=ols:conn=/dev/ttyACM0"
40.sp
10d98b47
UH
41Some USB devices don't use a unique VendorID/ProductID combination, and thus
42need that specified as well. This also uses the \fBconn\fP option, using
43either \fBVendorID.ProductID\fP or \fBbus.address\fP:
53155b2f
BV
44.sp
45.RB " $ " "sigrok\-cli \-\-driver=nexus-osciprime:conn=04b4.8613"
43e5747a 46.TP
b5ac81ad 47.BR "\-c, \-\-config " <device>
53155b2f 48A colon-separated list of device options, where each option takes the form
1b4b6a7c 49.BR key=value .
10d98b47
UH
50For example, to set the samplerate to 1MHz on a device supported by the
51fx2lafw driver, you might specify
1b4b6a7c 52.sp
b5ac81ad 53.RB " $ " "sigrok\-cli \-\-driver=fx2lafw \-\-config samplerate=1m"
1b4b6a7c 54.sp
53155b2f
BV
55Samplerate is an option common to most logic analyzers. The argument specifies
56the samplerate in Hz. You can also specify the samplerate in kHz, MHz or GHz.
1b4b6a7c
UH
57The following are all equivalent:
58.sp
b5ac81ad 59.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-config samplerate=1000000"
1b4b6a7c 60.sp
b5ac81ad 61.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-config samplerate=1m"
1b4b6a7c 62.sp
b5ac81ad 63.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-config \(dqsamplerate=1 MHz\(dq"
1b4b6a7c 64.TP
43e5747a 65.BR "\-i, \-\-input\-file " <filename>
7949dca0 66Load input from a file instead of a hardware device. If the
43e5747a
UH
67.B \-\-input\-format
68option is not supplied, sigrok-cli attempts to autodetect the file format of
69the input file.
70.TP
71.BR "\-I, \-\-input\-format " <format>
72When loading an input file, assume it's in the specified format. If this
73option is not supplied (in addition to
74.BR \-\-input\-file ),
943d0c08
75sigrok-cli attempts to autodetect the file format of the input file. Use the
76.B \-V
10d98b47
UH
77option to see a list of available input formats.
78.sp
79The format name may optionally be followed by a colon-separated list of
80options, where each option takes the form
943d0c08 81.BR "key=value" .
43e5747a
UH
82.TP
83.BR "\-o, \-\-output\-file " <filename>
84Save output to a file instead of writing it to stdout. The default format
85used when saving is the sigrok session file format. This can be changed with
86the
76ae913d 87.B \-\-output\-format
7949dca0
UH
88option.
89.TP
90.BR "\-O, \-\-output\-format " <formatname>
91Set the output format to use. Use the
92.B \-V
10d98b47
UH
93option to see a list of available output formats.
94.sp
95The format name may optionally be followed by a colon-separated list of
96options, where each option takes the form
7949dca0
UH
97.BR "key=value" .
98.sp
99Supported formats currently include
100.BR bits ,
101.BR hex ,
102.BR ascii ,
103.BR binary ,
104.BR vcd ,
85f2ddbb
UH
105.BR ols ,
106.BR gnuplot ,
10d98b47
UH
107.BR chronovu-la8 ,
108.BR csv ", and"
109.BR analog .
7949dca0
UH
110.sp
111The
112.B bits
113or
114.B hex
115formats, 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
116.B hex:width=128
117will display 128 bits per line, in hexadecimal:
118.sp
10d98b47
UH
119 0:ffff ffff ffff ffff ffff ffff ffff ffff
120 1:ff00 ff00 ff00 ff00 ff00 ff00 ff00 ff00
7949dca0
UH
121.sp
122The lines always start with the probe number (or name, if defined), followed by a colon. If no format is specified, it defaults to
123.BR bits:width=64 ,
124like this:
125.sp
10d98b47
UH
126 0:11111111 11111111 11111111 11111111 [...]
127 1:11111111 00000000 11111111 00000000 [...]
43e5747a 128.TP
43e5747a
UH
129.BR "\-p, \-\-probes " <probelist>
130A comma-separated list of probes to be used in the session.
131.sp
10d98b47
UH
132Note that sigrok always names the probes according to how they're shown on
133the enclosure of the hardware. If your logic analyzer numbers the probes 0-15,
134that's how you must specify them with this option. An oscilloscope's probes
135would generally be referred to as "CH1", "CH2", and so on.
136Use the \fB\-\-show\fP option to see a list of probe names for your device.
53155b2f 137.sp
43e5747a
UH
138The default is to use all the probes available on a device. You can name
139a probe like this:
140.BR "1=CLK" .
141A range of probes can also be given, in the form
142.BR "1\-5" .
143.sp
144Example:
145.sp
10d98b47
UH
146.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
147.br
148.B " \-\-probes 1=CLK,2\-4,7"
43e5747a
UH
149.br
150 CLK:11111111 11111111 11111111 11111111 [...]
151 2:11111111 11111111 11111111 11111111 [...]
152 3:11111111 11111111 11111111 11111111 [...]
153 4:11111111 11111111 11111111 11111111 [...]
154 7:11111111 11111111 11111111 11111111 [...]
155.sp
156The comma-separated list is processed from left to right, i.e. items farther
157to the right override previous items. For example
158.B "1=CS,1=MISO"
159will set the name of probe 1 to
160.BR "MISO" .
161.sp
162Also, while
163.B "5=MOSI,6=MISO"
164will only select probes 5 and 6, and set their names to MISO and MOSI, the
165command line
166.B "5=MOSI,6=MISO,1\-8"
167will select probes 1\-8 (including 5 and 6, of course), but the names specified
168for probes 5 and 6 will be reset to the defaults by the
169.B "1\-8"
170probe selection.
171.TP
172.BR "\-t, \-\-triggers " <triggerlist>
173A comma-separated list of triggers to use, of the form
174.BR "<probe>=<trigger>" .
175You can use the name or number of the probe, and the trigger itself is a
176series of characters:
177.sp
178.BR "0 or 1" :
179A low or high value on the pin.
180.br
181.BR "r or f" :
182A rising or falling value on the pin. An
183.B r
184effectively corresponds to
185.BR 01 .
186.br
187.BR "c" :
85f2ddbb 188Any kind of change on a pin (either a rising or a falling edge).
43e5747a 189.sp
10d98b47
UH
190Not every device supports all of these trigger types. Use the \fB\-\-show\fP
191command to see which triggers your device supports.
43e5747a
UH
192.TP
193.BR "\-w, \-\-wait-trigger"
10d98b47
UH
194Don't output any sample data (even if it's actually received from the
195hardware) before the trigger condition is met. In other words, do not output
196any pre-trigger data. This option is useful if you don't care about the data
197that came before the trigger (but the hardware delivers this data to sigrok
198nonetheless).
43e5747a 199.TP
b5ac81ad 200.BR "\-P, \-\-protocol\-decoders " <list>
85f2ddbb
UH
201This option allows the user to specify a comma-separated list of protocol
202decoders to be used in this session. The decoders are specified by their
203ID, as shown in the
204.B \-\-version
205output.
206.sp
207Example:
208.sp
209 $
b5ac81ad 210.B "sigrok\-cli \-i <file.sr> \-P i2c"
85f2ddbb
UH
211.sp
212Each protocol decoder can optionally be followed by a colon-separated list
213of options, where each option takes the form
214.BR "key=value" .
215.sp
216Example:
217.sp
218 $
b5ac81ad 219.B "sigrok\-cli \-i <file.sr> \-P uart:baudrate=115200:parity=odd"
85f2ddbb
UH
220.sp
221The list of supported options depends entirely on the protocol decoder. Every
222protocol decoder has different options it supports.
223.sp
224Any "options" specified for a protocol decoder which are not actually
225supported options, will be interpreted as being probe name/number assignments.
226.sp
227Example:
228.sp
229 $
230.B "sigrok\-cli \-i <file.sr>"
231.br
b5ac81ad 232.B " \-P spi:wordsize=9:miso=1:mosi=5:sck=3:cs=0"
85f2ddbb
UH
233.sp
234In this example,
235.B wordsize
236is an option supported by the
237.B spi
238protocol decoder. Additionally, the user tells sigrok to decode the SPI
239protocol using probe 1 as MISO signal for SPI, probe 5 as MOSI, probe 3
240as SCK, and probe 0 as CS# signal.
241.TP
b5ac81ad 242.BR "\-S, \-\-protocol\-decoder\-stack " <stack>
85f2ddbb
UH
243This option allows the user to specify a protocol decoder stack, i.e.
244the way in which one protocol decoder's output gets piped into another
7fb87027 245protocol decoder. If not specified, the stack will be set up in the same
1a0be0e3
UH
246order in which the protocol decoders were given with the
247.B \-\-protocol-decoders
7fb87027 248option.
85f2ddbb
UH
249.sp
250The decoders are specified by their ID, as shown in the
251.B \-\-version
252output. In addition to the
b5ac81ad 253.B \-S
85f2ddbb
UH
254option, all protocol decoders that are used in a stack, must also be specified
255(together with their options, if any) using the
b5ac81ad 256.B \-A
85f2ddbb
UH
257parameter.
258.sp
259Example:
260.sp
261 $
b5ac81ad 262.B "sigrok\-cli \-i <file.sr> \-A i2c:sda=4:scl=7,rtc8564"
85f2ddbb 263.br
b5ac81ad 264.B " \-S i2c,rtc8564"
85f2ddbb
UH
265.sp
266In this example, the
b5ac81ad 267.B \-S
85f2ddbb
UH
268option specifies that the output of the
269.BR i2c " decoder"
270is piped into the
271.BR rtc8564 " decoder,"
272i.e., the
273.BR rtc8564 " decoder"
274is stacked on top of the
275.BR i2c " decoder."
276.sp
277The respective protocol decoder options and probe name/number assignments
278must be given using the
b5ac81ad 279.B \-P
85f2ddbb 280option (you cannot specify them in the
b5ac81ad 281.B \-S
85f2ddbb
UH
282option).
283.TP
b6bd032d 284.BR "\-A, \-\-protocol\-decoder\-annotations " <annotations>
7fb87027
BV
285By default, only the stack's topmost protocol decoder's annotation output is
286shown. With this option another decoder's annotation can be selected for
1a0be0e3 287display, by specifying its ID:
7fb87027
BV
288.sp
289 $
b5ac81ad 290.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid -A i2c"
7fb87027
BV
291.sp
292If a protocol decoder has multiple annotation formats, you can also specify
293which of them to show by specifying its short description like this:
294.sp
295 $
b5ac81ad 296.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
7fb87027 297.br
b6bd032d 298.B " \-A i2c=rawhex"
7fb87027
BV
299.sp
300You can also select multiple protocol decoders, with an optional selected
301annotation format each, by separating them with commas:
302.sp
303 $
b5ac81ad 304.B "sigrok\-cli \-i <file.sr> \-P i2c,i2cfilter,edid"
7fb87027 305.br
b6bd032d 306.B " \-A i2c=rawhex,edid"
7fb87027 307.TP
53155b2f 308.BR "\-l, \-\-loglevel " <level>
10d98b47
UH
309Set the libsigrok and libsigrokdecode loglevel. At the moment \fBsigrok-cli\fP
310doesn't support setting the two loglevels independently. The higher the
53155b2f
BV
311number, the more debug output will be printed. Valid loglevels are:
312.sp
313\fB0\fP None
314.br
315\fB1\fP Error
316.br
317\fB2\fP Warnings
318.br
319\fB3\fP Informational
320.br
321\fB4\fP Debug
322.br
323\fB5\fP Spew
324.TP
325.B "\-\-show"
326.br
10d98b47
UH
327Show information about the selected option. For example, to see options for a
328connected fx2lafw device:
53155b2f
BV
329.sp
330 $
331.B "sigrok\-cli \-\-driver fx2lafw \-\-show
332.sp
10d98b47
UH
333In order to properly get device options for your hardware, some drivers might
334need a serial port specified:
53155b2f
BV
335.sp
336 $
337.B "sigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-show
338.sp
339To view the documentation for a protocol decoder:
340.sp
341 $
342.B "sigrok\-cli \-\-protocol-decoders i2c \-\-show
343.TP
b5ac81ad
BV
344.B "\-\-scan"
345Scan for devices that can be detected automatically.
10d98b47
UH
346.sp
347Example:
348.sp
349 $
b5ac81ad 350.B "sigrok\-cli \-\-scan
10d98b47
UH
351.br
352 The following devices were found:
353.br
354 Demo device with 8 probes: 0 1 2 3 4 5 6 7
355.br
356 ChronoVu LA8 with 8 probes: 0 1 2 3 4 5 6 7
357.br
358 ALSA: HDA ATI SB ALC270 Analog with 2 probes: Ch_0 Ch_1
359.br
360 Saleae Logic with 8 probes: 0 1 2 3 4 5 6 7
361.sp
362However, not all devices are auto-detectable (e.g. serial port based ones).
363For those you'll have to provide a \fBconn\fP option, see above.
364.sp
365 $
b5ac81ad 366.B "sigrok\-cli \-\-driver digitek-dt4000zc:conn=/dev/ttyUSB0 \-\-scan
10d98b47
UH
367.br
368 The following devices were found:
369.br
370 Digitek DT4000ZC with 1 probe: P1
53155b2f 371.TP
43e5747a
UH
372.BR "\-\-time " <ms>
373Sample for
374.B <ms>
10d98b47
UH
375milliseconds, then quit.
376.sp
377You can optionally follow the number by \fBs\fP, \fBms\fP, \fBus\fP, or
378\fBns\fP to specify the time to sample in seconds, milliseconds, microseconds,
379or nanoseconds, respectively.
380.sp
381For example,
43e5747a
UH
382.B "\-\-time 2s"
383will sample for two seconds.
384.TP
385.BR "\-\-samples " <numsamples>
386Acquire
387.B <numsamples>
388samples, then quit.
10d98b47
UH
389.sp
390You can optionally follow the number by \fBk\fP, \fBm\fP, or \fBg\fP to
391specify the number of samples in kilosamples, megasamples, or gigasamples,
392respectively.
393.sp
394For example,
395.B "\-\-samples 3m"
396will acquire 3000000 samples.
43e5747a
UH
397.TP
398.BR "\-\-continuous"
399Sample continuously until stopped. Not all devices support this.
2d73284e
BV
400.TP
401.BR "\-\-set"
b8656921
UH
402Set one or more variables specified with the \fB\-\-config\fP option, without
403doing any acquisition.
53155b2f 404.SH EXAMPLES
b8656921
UH
405In order to get exactly 100 samples from the connected fx2lafw-supported logic
406analyzer hardware, run the following command:
43e5747a 407.TP
53155b2f 408.B " sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
43e5747a 409.TP
2d73284e 410If you want to sample data for 3 seconds (3000 ms), use:
43e5747a 411.TP
53155b2f 412.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3000"
43e5747a
UH
413.TP
414Alternatively, you can also use:
415.TP
53155b2f 416.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3s"
43e5747a 417.TP
53155b2f
BV
418To capture data from the first 4 probes using the Openbench Logic Sniffer lasting 100ms at 10 MHz starting at the trigger condition
4190:high, 1:rising, 2:low, 3:high, use:
43e5747a 420.TP
53155b2f 421.nf
b5ac81ad
BV
422\fBsigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-config samplerate=10m \\\fP
423\fB\-\-output\-format bits \-\-probes 0\-3 \-\-wait\-trigger \\\fP
424\fB\-\-triggers 0=1,1=r,2=0,3=1 \-\-time 100\fP
2d73284e
BV
425.TP
426To turn on internal logging on a Lascar EL-USB series device:
427.TP
428\fBsigrok\-cli \-\-driver lascar\-el\-usb:conn=10c4.0002 \\\fP
b8656921 429\fB\-\-config datalog=on \-\-set\fP
43e5747a
UH
430.SH "EXIT STATUS"
431.B sigrok\-cli
432exits with 0 on success, 1 on most failures.
433.SH "SEE ALSO"
b5ac81ad 434\fBpulseview\fP(1)
43e5747a 435.SH "BUGS"
10d98b47
UH
436Please report any bugs via Bugzilla
437.RB "(" http://sigrok.org/bugzilla ")"
438or on the sigrok\-devel mailing list
43e5747a
UH
439.RB "(" sigrok\-devel@lists.souceforge.net ")."
440.SH "LICENSE"
441.B sigrok\-cli
442is covered by the GNU General Public License (GPL). Some portions are
443licensed under the "GPL v2 or later", some under "GPL v3 or later".
444.SH "AUTHORS"
445Please see the individual source code files.
446.PP
447This manual page was written by Uwe Hermann <uwe@hermann\-uwe.de>.
448It is licensed under the terms of the GNU GPL (version 2 or later).