]> sigrok.org Git - sigrok-cli.git/blame_incremental - doc/sigrok-cli.1
Deprecate SR_DI_VDIVS.
[sigrok-cli.git] / doc / sigrok-cli.1
... / ...
CommitLineData
1.TH SIGROK\-CLI 1 "May 29, 2012"
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 \fBsigrok\fP software.
8.PP
9The command-line frontend for sigrok cannot display graphical output, but is
10still sufficient to run through the whole process of hardware initialization,
11acquisition, protocol decoding and saving the session.
12.PP
13It is useful for running on remote or embedded systems, netbooks, PDAs,
14and for various other use-cases. It can display samples on standard output or
15save them in various file formats.
16.SH OPTIONS
17.TP
18.B "\-h, \-\-help"
19Show a help text and exit.
20.TP
21.B "\-V, \-\-version"
22Show
23.B sigrok-cli
24version, and information about supported hardware drivers, input file
25formats, output file formats, and protocol decoders.
26.TP
27\fB\-\-driver\fP <drivername>
28A driver must always be selected. Use the \fB-V\fP option to get a list of available drivers. Drivers can take options, in the form \fBkey=value\fP separated by colons.
29.sp
30Drivers communicating with hardware via a serial port always need the port specified as the \fBconn\fP option. For example, to use the Openbench Logic Sniffer:
31.sp
32.RB " $ " "sigrok\-cli \-\-driver=ols:conn=/dev/ttyACM0"
33.sp
34Some USB devices don't use a unique VendorID/ProductID combination, and thus need that specified as well. This also uses the \fBconn\fP option, using either \fBVendorID.ProductID\fP or \fBbus.address\fP:
35.sp
36.RB " $ " "sigrok\-cli \-\-driver=nexus-osciprime:conn=04b4.8613"
37.TP
38.BR "\-d, \-\-device " <device>
39A colon-separated list of device options, where each option takes the form
40.BR key=value .
41For example, to set the samplerate on a device supported by the fx2lafw
42driver, you might specify
43.sp
44.RB " $ " "sigrok\-cli \-\-driver=fx2lafw \-\-device samplerate=1m"
45.sp
46Samplerate is an option common to most logic analyzers. The argument specifies
47the samplerate in Hz. You can also specify the samplerate in kHz, MHz or GHz.
48The following are all equivalent:
49.sp
50.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-device samplerate=1000000"
51.sp
52.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-device samplerate=1m"
53.sp
54.RB " $ " "sigrok\-cli \-\-driver fx2lafw \-\-device \(dqsamplerate=1 MHz\(dq"
55.TP
56.BR "\-i, \-\-input\-file " <filename>
57Load input from a file instead of a hardware device. If the
58.B \-\-input\-format
59option is not supplied, sigrok-cli attempts to autodetect the file format of
60the input file.
61.TP
62.BR "\-I, \-\-input\-format " <format>
63When loading an input file, assume it's in the specified format. If this
64option is not supplied (in addition to
65.BR \-\-input\-file ),
66sigrok-cli attempts to autodetect the file format of the input file. Use the
67.B \-V
68option to see a list of available input formats. The format name may
69optionally be followed by a colon-separated list of options, where each
70option takes the form
71.BR "key=value" .
72.TP
73.BR "\-o, \-\-output\-file " <filename>
74Save output to a file instead of writing it to stdout. The default format
75used when saving is the sigrok session file format. This can be changed with
76the
77.B \-\-output\-format
78option.
79.TP
80.BR "\-O, \-\-output\-format " <formatname>
81Set the output format to use. Use the
82.B \-V
83option to see a list of available output formats. The format name may
84optionally be followed by a colon-separated list of options, where each
85option takes the form
86.BR "key=value" .
87.sp
88Supported formats currently include
89.BR bits ,
90.BR hex ,
91.BR ascii ,
92.BR binary ,
93.BR vcd ,
94.BR ols ,
95.BR gnuplot ,
96.BR chronovu-la8 ", and"
97.BR csv .
98.sp
99The
100.B bits
101or
102.B hex
103formats, 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
104.B hex:width=128
105will display 128 bits per line, in hexadecimal:
106.sp
107 1:ffff ffff ffff ffff ffff ffff ffff ffff
108 2:ff00 ff00 ff00 ff00 ff00 ff00 ff00 ff00
109.sp
110The lines always start with the probe number (or name, if defined), followed by a colon. If no format is specified, it defaults to
111.BR bits:width=64 ,
112like this:
113.sp
114 1:11111111 11111111 11111111 11111111 [...]
115 2:11111111 00000000 11111111 00000000 [...]
116.TP
117.BR "\-p, \-\-probes " <probelist>
118A comma-separated list of probes to be used in the session.
119.sp
120Note that sigrok always names the probes according to how they're shown on the enclosure of the hardware. If your logic analyzer numbers the probes 0-15, that's how you must specify them with this option. An oscilloscope's probes would generally be referred to as "CH1", "CH2", and so on. Use the \fB\-\-show\fP option to see a list of probe names for your device.
121.sp
122The default is to use all the probes available on a device. You can name
123a probe like this:
124.BR "1=CLK" .
125A range of probes can also be given, in the form
126.BR "1\-5" .
127.sp
128Example:
129.sp
130 $
131.B "sigrok\-cli \-\-driver fx2lafw \-\-samples 100 \-\-probes 1=CLK,2\-4,7"
132.br
133 CLK:11111111 11111111 11111111 11111111 [...]
134 2:11111111 11111111 11111111 11111111 [...]
135 3:11111111 11111111 11111111 11111111 [...]
136 4:11111111 11111111 11111111 11111111 [...]
137 7:11111111 11111111 11111111 11111111 [...]
138.sp
139The comma-separated list is processed from left to right, i.e. items farther
140to the right override previous items. For example
141.B "1=CS,1=MISO"
142will set the name of probe 1 to
143.BR "MISO" .
144.sp
145Also, while
146.B "5=MOSI,6=MISO"
147will only select probes 5 and 6, and set their names to MISO and MOSI, the
148command line
149.B "5=MOSI,6=MISO,1\-8"
150will select probes 1\-8 (including 5 and 6, of course), but the names specified
151for probes 5 and 6 will be reset to the defaults by the
152.B "1\-8"
153probe selection.
154.TP
155.BR "\-t, \-\-triggers " <triggerlist>
156A comma-separated list of triggers to use, of the form
157.BR "<probe>=<trigger>" .
158You can use the name or number of the probe, and the trigger itself is a
159series of characters:
160.sp
161.BR "0 or 1" :
162A low or high value on the pin.
163.br
164.BR "r or f" :
165A rising or falling value on the pin. An
166.B r
167effectively corresponds to
168.BR 01 .
169.br
170.BR "c" :
171Any kind of change on a pin (either a rising or a falling edge).
172.sp
173Not every device supports all of these trigger types. Use the \fB\-\-show\fP command to see which triggers your device supports.
174.TP
175.BR "\-w, \-\-wait-trigger"
176Don't output any sample data (even if it's actually received from the hardware) before the trigger condition is met. In other words, do not output any pre-trigger data. This option is useful if you don't care about the data that came before the trigger (but the hardware delivers this data to sigrok nonetheless).
177.TP
178.BR "\-a, \-\-protocol\-decoders " <list>
179This option allows the user to specify a comma-separated list of protocol
180decoders to be used in this session. The decoders are specified by their
181ID, as shown in the
182.B \-\-version
183output.
184.sp
185Example:
186.sp
187 $
188.B "sigrok\-cli \-i <file.sr> \-a i2c"
189.sp
190Each protocol decoder can optionally be followed by a colon-separated list
191of options, where each option takes the form
192.BR "key=value" .
193.sp
194Example:
195.sp
196 $
197.B "sigrok\-cli \-i <file.sr> \-a uart:baudrate=115200:parity=odd"
198.sp
199The list of supported options depends entirely on the protocol decoder. Every
200protocol decoder has different options it supports.
201.sp
202Any "options" specified for a protocol decoder which are not actually
203supported options, will be interpreted as being probe name/number assignments.
204.sp
205Example:
206.sp
207 $
208.B "sigrok\-cli \-i <file.sr>"
209.br
210.B " \-a spi:wordsize=9:miso=1:mosi=5:sck=3:cs=0"
211.sp
212In this example,
213.B wordsize
214is an option supported by the
215.B spi
216protocol decoder. Additionally, the user tells sigrok to decode the SPI
217protocol using probe 1 as MISO signal for SPI, probe 5 as MOSI, probe 3
218as SCK, and probe 0 as CS# signal.
219.TP
220.BR "\-s, \-\-protocol\-decoder\-stack " <stack>
221This option allows the user to specify a protocol decoder stack, i.e.
222the way in which one protocol decoder's output gets piped into another
223protocol decoder. If not specified, the stack will be set up in the same
224order in which the protocol decoders were given with the
225.B \-\-protocol-decoders
226option.
227.sp
228The decoders are specified by their ID, as shown in the
229.B \-\-version
230output. In addition to the
231.B \-s
232option, all protocol decoders that are used in a stack, must also be specified
233(together with their options, if any) using the
234.B \-a
235parameter.
236.sp
237Example:
238.sp
239 $
240.B "sigrok\-cli \-i <file.sr> \-a i2c:sda=4:scl=7,rtc8564"
241.br
242.B " \-s i2c,rtc8564"
243.sp
244In this example, the
245.B \-s
246option specifies that the output of the
247.BR i2c " decoder"
248is piped into the
249.BR rtc8564 " decoder,"
250i.e., the
251.BR rtc8564 " decoder"
252is stacked on top of the
253.BR i2c " decoder."
254.sp
255The respective protocol decoder options and probe name/number assignments
256must be given using the
257.B \-a
258option (you cannot specify them in the
259.B \-s
260option).
261.TP
262.BR "\-A, \-\-protocol\-decoder\-annotations " <annotations>
263By default, only the stack's topmost protocol decoder's annotation output is
264shown. With this option another decoder's annotation can be selected for
265display, by specifying its ID:
266.sp
267 $
268.B "sigrok\-cli \-i <file.sr> \-a i2c,i2cfilter,edid -A i2c"
269.sp
270If a protocol decoder has multiple annotation formats, you can also specify
271which of them to show by specifying its short description like this:
272.sp
273 $
274.B "sigrok\-cli \-i <file.sr> \-a i2c,i2cfilter,edid"
275.br
276.B " \-A i2c=rawhex"
277.sp
278You can also select multiple protocol decoders, with an optional selected
279annotation format each, by separating them with commas:
280.sp
281 $
282.B "sigrok\-cli \-i <file.sr> \-a i2c,i2cfilter,edid"
283.br
284.B " \-A i2c=rawhex,edid"
285.TP
286.BR "\-l, \-\-loglevel " <level>
287Set the libsigrok and libsigrokdecode loglevel. At the moment \fBsigrok-cli\fP doesn't support setting the two loglevels independently. The higher the
288number, the more debug output will be printed. Valid loglevels are:
289.sp
290\fB0\fP None
291.br
292\fB1\fP Error
293.br
294\fB2\fP Warnings
295.br
296\fB3\fP Informational
297.br
298\fB4\fP Debug
299.br
300\fB5\fP Spew
301.TP
302.B "\-\-show"
303.br
304Show information about the selected option. For example, to see options for a connected fx2lafw device:
305.sp
306 $
307.B "sigrok\-cli \-\-driver fx2lafw \-\-show
308.sp
309In order to properly get device options for your hardware, some drivers might need a serial port specified:
310.sp
311 $
312.B "sigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-show
313.sp
314To view the documentation for a protocol decoder:
315.sp
316 $
317.B "sigrok\-cli \-\-protocol-decoders i2c \-\-show
318.TP
319.B "\-D, \-\-list\-devices"
320List all devices found on the system. This actively scans for devices that can be detected automatically.
321.TP
322.BR "\-\-time " <ms>
323Sample for
324.B <ms>
325milliseconds, then quit. You can optionally follow the number by
326.B s
327to state the number of seconds to sample instead. For example,
328.B "\-\-time 2s"
329will sample for two seconds.
330.TP
331.BR "\-\-samples " <numsamples>
332Acquire
333.B <numsamples>
334samples, then quit.
335.TP
336.BR "\-\-continuous"
337Sample continuously until stopped. Not all devices support this.
338.SH EXAMPLES
339In order to get exactly 100 samples from the connected fx2lafw-supported logic analyzer hardware, run the following command:
340.TP
341.B " sigrok\-cli \-\-driver fx2lafw \-\-samples 100"
342.TP
343If you want to sample data for 3 seconds, use:
344.TP
345.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3000"
346.TP
347Alternatively, you can also use:
348.TP
349.B " sigrok\-cli \-\-driver fx2lafw \-\-time 3s"
350.TP
351To capture data from the first 4 probes using the Openbench Logic Sniffer lasting 100ms at 10 MHz starting at the trigger condition
3520:high, 1:rising, 2:low, 3:high, use:
353.TP
354.nf
355 \fBsigrok\-cli \-\-driver ols:conn=/dev/ttyACM0 \-\-device samplerate=10m \\
356\fB\-\-output\-format bits \-\-probes 0\-3 \-\-time 100 \\
357\fB\-\-wait\-trigger \-\-triggers 0=1,1=r,2=0,3=1
358.fi
359.SH "EXIT STATUS"
360.B sigrok\-cli
361exits with 0 on success, 1 on most failures.
362.SH "SEE ALSO"
363\fBsigrok\-qt\fP(1),
364\fBsigrok\-gtk\fP(1)
365.SH "BUGS"
366Please report any bugs on the sigrok\-devel mailing list
367.RB "(" sigrok\-devel@lists.souceforge.net ")."
368.SH "LICENSE"
369.B sigrok\-cli
370is covered by the GNU General Public License (GPL). Some portions are
371licensed under the "GPL v2 or later", some under "GPL v3 or later".
372.SH "AUTHORS"
373Please see the individual source code files.
374.PP
375This manual page was written by Uwe Hermann <uwe@hermann\-uwe.de>.
376It is licensed under the terms of the GNU GPL (version 2 or later).