• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

autostuff/H11-Dec-2019-16,82912,531

contrib/H03-May-2022-

decoders/H11-Dec-2019-37,55826,365

m4/H11-Dec-2019-9,5328,633

tests/H11-Dec-2019-1,125682

tools/H11-Dec-2019-12686

AUTHORSH A D11-Dec-2019285 85

COPYINGH A D11-Dec-201934.3 KiB675553

ChangeLogH A D11-Dec-2019325.5 KiB10,1856,813

DoxyfileH A D11-Dec-2019105.2 KiB2,4561,901

HACKINGH A D11-Dec-20197.6 KiB204142

INSTALLH A D11-Dec-201915.4 KiB369287

Makefile.amH A D11-Dec-20192.6 KiB10060

Makefile.inH A D03-May-202259.9 KiB1,5481,382

NEWSH A D11-Dec-201934.7 KiB728701

READMEH A D11-Dec-20193 KiB10267

aclocal.m4H A D11-Dec-201953 KiB1,4781,340

config.h.inH A D11-Dec-20192.9 KiB11480

configureH A D11-Dec-2019486.5 KiB16,56113,928

configure.acH A D11-Dec-20196.4 KiB179140

decoder.cH A D11-Dec-201925 KiB1,100744

error.cH A D11-Dec-20193.5 KiB15364

exception.cH A D11-Dec-20194.1 KiB173112

instance.cH A D11-Dec-201936.6 KiB1,347798

libsigrokdecode-internal.hH A D11-Dec-20194.8 KiB14581

libsigrokdecode.hH A D11-Dec-201911.5 KiB397200

libsigrokdecode.pc.inH A D11-Dec-2019497 1917

log.cH A D11-Dec-20195.5 KiB21172

module_sigrokdecode.cH A D11-Dec-20192.3 KiB8742

session.cH A D11-Dec-201911.2 KiB410168

srd.cH A D11-Dec-201910.9 KiB414188

type_decoder.cH A D11-Dec-201928.4 KiB1,082722

util.cH A D11-Dec-201911.7 KiB517280

version.cH A D11-Dec-20194.5 KiB18060

version.h.inH A D11-Dec-20191.9 KiB7155

README

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
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
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
27Requirements
28------------
29
30 - git (only needed when building from git)
31 - gcc (>= 4.0) or clang
32 - make
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)
36 - pkg-config >= 0.22
37 - libglib >= 2.34
38 - Python >= 3.2
39 - check >= 0.9.4 (optional, only needed to run unit tests)
40 - doxygen (optional, only needed for the C API docs)
41 - graphviz (optional, only needed for the C API docs)
42
43
44Building and installing
45-----------------------
46
47In order to get the libsigrokdecode source code and build it, run:
48
49 $ git clone git://sigrok.org/libsigrokdecode
50 $ cd libsigrokdecode
51 $ ./autogen.sh
52 $ ./configure
53 $ make
54
55For installing libsigrokdecode:
56
57 $ make install
58
59See INSTALL or the following wiki page for more (OS-specific) instructions:
60
61 http://sigrok.org/wiki/Building
62
63
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
85Mailing list
86------------
87
88 https://lists.sourceforge.net/lists/listinfo/sigrok-devel
89
90
91IRC
92---
93
94You can find the sigrok developers in the #sigrok IRC channel on Freenode.
95
96
97Website
98-------
99
100 http://sigrok.org/wiki/Libsigrokdecode
101
102