]> sigrok.org Git - libsigrokdecode.git/blame - README
sle44xx: support memory read "to end of capacity"
[libsigrokdecode.git] / README
CommitLineData
804404fc
UH
1-------------------------------------------------------------------------------
2README
3-------------------------------------------------------------------------------
4
5The sigrok project aims at creating a portable, cross-platform,
d3b034e6
UH
6Free/Libre/Open-Source signal analysis software suite that supports various
7device types (such as logic analyzers, oscilloscopes, multimeters, and more).
804404fc
UH
8
9libsigrokdecode is a shared library written in C which provides the basic
10API for running sigrok protocol decoders. The protocol decoders themselves
11are written in Python.
12
13
d3b034e6
UH
14Status
15------
16
17libsigrokdecode 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
804404fc
UH
27Requirements
28------------
29
9177963d
UH
30 - git (only needed when building from git)
31 - gcc (>= 4.0) or clang
066ecdab 32 - make
9177963d
UH
33 - autoconf >= 2.63 (only needed when building from git)
34 - automake >= 1.11 (only needed when building from git)
35 - libtool (only needed when building from git)
066ecdab 36 - pkg-config >= 0.22
1a41642e 37 - libglib >= 2.34
a0a9afd9 38 - Python >= 3.2
7529cdaa 39 - check >= 0.9.4 (optional, only needed to run unit tests)
9177963d
UH
40 - doxygen (optional, only needed for the C API docs)
41 - graphviz (optional, only needed for the C API docs)
804404fc
UH
42
43
44Building and installing
45-----------------------
46
47In order to get the libsigrokdecode source code and build it, run:
48
e0af499b
UH
49 $ git clone git://sigrok.org/libsigrokdecode
50 $ cd libsigrokdecode
804404fc
UH
51 $ ./autogen.sh
52 $ ./configure
53 $ make
54
55For installing libsigrokdecode:
56
57 $ make install
58
d5a4209d 59See INSTALL or the following wiki page for more (OS-specific) instructions:
804404fc 60
d5a4209d 61 http://sigrok.org/wiki/Building
804404fc
UH
62
63
3e1a99c0
UH
64Copyright and license
65---------------------
66
67libsigrokdecode is licensed under the terms of the GNU General Public License
68(GPL), version 3 or later.
69
70The protocol decoders (PDs) included in libsigrokdecode are an integral part
71of the shared library (they are not merely external "plugins", they are not
72external programs that libsigrokdecode calls via fork/exec, they cannot
73function standalone without libsigrokdecode at all, the PDs and the rest of
74the libsigrokdecode codebase share data structures and make function calls
75to each other). Thus, since the PDs are part of the library, they are also
76licensed under the terms of the GPLv3+.
77
78While some individual source code files are licensed under the GPLv2+, and
79some files are licensed under the GPLv3+, this doesn't change the fact that
80the library as a whole is licensed under the terms of the GPLv3+.
81
82Please see the individual source files for the full list of copyright holders.
83
84
3b884e85
UH
85Mailing list
86------------
804404fc
UH
87
88 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
804404fc
UH
89
90
91IRC
92---
93
94You can find the sigrok developers in the #sigrok IRC channel on Freenode.
95
96
97Website
98-------
99
d3b034e6 100 http://sigrok.org/wiki/Libsigrokdecode
804404fc 101