]> sigrok.org Git - libsigrok.git/blame_incremental - README
We now require libusb >= 1.0.9.
[libsigrok.git] / README
... / ...
CommitLineData
1-------------------------------------------------------------------------------
2README
3-------------------------------------------------------------------------------
4
5The sigrok project aims at creating a portable, cross-platform,
6Free/Libre/Open-Source signal analysis software suite that supports various
7device types (such as logic analyzers, oscilloscopes, multimeters, and more).
8
9libsigrok is a shared library written in C which provides the basic API
10for talking to hardware and reading/writing the acquired data into various
11input/output file formats.
12
13
14Status
15------
16
17libsigrok is in a usable state and has had official tarball releases.
18
19While the API can change from release to release, this will always be
20properly documented and reflected in the package version number and
21in the shared library / libtool / .so-file version numbers.
22
23However, there are _NO_ guarantees at all for stable APIs in git snapshots!
24Distro packagers should only use released tarballs (no git snapshots).
25
26
27Requirements
28------------
29
30 - git
31 - gcc (>= 4.0)
32 - make
33 - autoconf >= 2.63
34 - automake >= 1.11
35 - libtool
36 - pkg-config >= 0.22
37 - libglib >= 2.28.0
38 - libusb >= 1.0.9 (for most hardware)
39 - libzip >= 0.8
40 - libftdi >= 0.16 (for some hardware)
41 - libudev >= 151 (for some hardware)
42
43
44Building and installing
45-----------------------
46
47In order to get the libsigrok source code and build it, run:
48
49 $ git clone git://sigrok.org/libsigrok
50 $ cd libsigrok
51 $ ./autogen.sh
52 $ ./configure
53 $ make
54
55For installing libsigrok:
56
57 $ make install
58
59Please see the following wiki pages for more detailed instructions:
60
61 http://sigrok.org/wiki/Linux
62 http://sigrok.org/wiki/Mac_OS_X
63 http://sigrok.org/wiki/Windows
64 http://sigrok.org/wiki/FreeBSD
65
66
67Firmware
68--------
69
70Some devices supported by libsigrok need a firmware to be uploaded before the
71device can be used.
72
73The default location where libsigrok expects the firmware files is:
74
75 $prefix/share/sigrok-firmware
76
77($prefix is usually /usr/local or /usr, depending on your ./configure options)
78
79For further information see:
80
81 http://sigrok.org/wiki/Firmware
82
83
84Mailing lists
85-------------
86
87There are two mailing lists for sigrok/libsigrok:
88
89 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
90 https://lists.sourceforge.net/lists/listinfo/sigrok-commits
91
92
93IRC
94---
95
96You can find the sigrok developers in the #sigrok IRC channel on Freenode.
97
98
99Website
100-------
101
102 http://sigrok.org/wiki/Libsigrok
103