Project

General

Profile

Sdrangelove » History » Version 7

horiz0n, 02/19/2016 10:51 PM

1 1 horiz0n
[[PageOutline]]
2
= Project sdrangelove =
3
4
TODO
5
6
== Supported Hardware ==
7
8
While primarily being developed for the OsmoSDR hardware, sdrangelove as well supports:
9
10
 * [http://tetra.osmocom.org/trac/wiki/Funcube_Dongle FunCube Dongle] through libgnuradio-fcd
11
 * [http://www.funcubedongle.com/?page_id=1073 FUNcube Dongle Pro+] through [https://github.com/dl1ksv/gr-fcdproplus gr-fcdproplus]
12
 * [http://sdr.osmocom.org/trac/ sysmocom OsmoSDR] Devices through [http://cgit.osmocom.org/osmo-sdr/ libosmosdr]
13
 * [http://nuand.com/ Nuand LLC bladeRF] through [https://github.com/Nuand/bladeRF libbladeRF library]
14
 * [http://greatscottgadgets.com/hackrf/ Great Scott Gadgets HackRF] through [https://github.com/mossmann/hackrf libhackrf]
15 5 horiz0n
 * [http://www.ettus.com/product Ettus USRP] Devices through [http://files.ettus.com/uhd_docs/manual/html/build.html Ettus UHD library]
16
 * [http://umtrx.org Fairwaves UmTRX] through [https://github.com/fairwaves/UHD-Fairwaves Fairwaves' fork of Ettus' UHD library]
17 1 horiz0n
 * RTL2832U based DVB-T dongles through [http://sdr.osmocom.org/trac/wiki/rtl-sdr librtlsdr]
18
 * RTL-TCP spectrum server (see librtlsdr project)
19
 * MSi2500 based DVB-T dongles through [http://cgit.osmocom.org/libmirisdr/ libmirisdr]
20
 * gnuradio .cfile input through libgnuradio-blocks
21
22
== Software ==
23
24
The sdrangelove code can be checked out with:
25
{{{
26 7 horiz0n
git clone git://git.osmocom.org/sdrangelove.git
27 1 horiz0n
}}}
28
29
It can also be browsed on http://cgit.osmocom.org/cgit/sdrangelove/
30
31 7 horiz0n
If you are going to "fork it on github" and enhance it, don't leave it bitrot there - '''contribute back''' and submit your patches to: osmocom-sdr at lists.osmocom.org. The amount (and quality) of contribution from the commmunity '''will have a direct impact''' on the availability of new features.
32 1 horiz0n
33
=== Mailing List ===
34
35 2 horiz0n
We discuss sdrangelove on the following mailing list: osmocom-sdr at lists.osmocom.org.
36 1 horiz0n
37
You can subscribe and/or unsubscribe via the following link: [http://lists.osmocom.org/mailman/listinfo/osmocom-sdr]
38
39
=== Building the software ===
40
41
==== sdrangelove ====
42
43
'''You have to install development packages for libusb1.0''' to build the software.
44
45
Sdrangelove comes with built-in support for OsmoSDR and rtl-sdr. Additional hardware support is available through a gr-osmosdr plugin which will be built automaticaly if gr-osmosdr has been installed (see below for guidance).
46
47
Building with cmake:
48
{{{
49
cd sdrangelove/
50
mkdir build
51
cd build
52
cmake ../
53
make
54
}}}
55
56 3 horiz0n
Running it:
57 1 horiz0n
58
{{{
59
cd sdrangelove
60
cd build/
61
./sdrangelove
62
}}}
63
64
==== Gnuradio Source ====
65
66
'''The Gnu Radio source requires a recent gnuradio (>= v3.7) to be installed.'''
67
68
The source supports direct device operation as well as a tcp client mode when using the rtl_tcp utility as a spectrum server.
69
70
Please note: prior pulling a new version from git and compiling it, please do a "make uninstall" from build directory first to properly remove the previous version.
71
72
Please note: you always should build & '''install the latest version of the dependencies''' before trying to build the gr source. The build system of gr-osmosdr will recognize them and enable specific source/sink components thereafter.
73
74
Building with cmake (as described in the [https://sdr.osmocom.org/trac/wiki/GrOsmoSDR gr-osmosdr wiki page]):
75
76
{{{
77
git clone git://git.osmocom.org/gr-osmosdr
78
cd gr-osmosdr/
79 7 horiz0n
}}}
80
81
You can build a standalone (no gnuradio required) version for gr-osmosdr by doing
82
83
{{{
84
git checkout standalone
85 1 horiz0n
}}}
86
87
then continue with
88
89
{{{
90
mkdir build
91
cd build/
92
cmake ../
93
}}}
94
95
Now cmake should print out a summary of enabled/disabled components. You may disable certain components by following guidelines shown by cmake. Make sure the device of your interest is listed here. Check your dependencies and retry otherwise.
96
{{{
97
-- ######################################################
98
-- # gr-osmosdr enabled components                         
99
-- ######################################################
100
--   * Python support
101
--   * Osmocom IQ Imbalance Correction
102
--   * sysmocom OsmoSDR
103 4 horiz0n
--   * FUNcube Dongle
104
--   * FUNcube Dongle Pro+
105 1 horiz0n
--   * IQ File Source
106
--   * Osmocom RTLSDR
107
--   * RTLSDR TCP Client
108
--   * Ettus USRP Devices
109
--   * Osmocom MiriSDR
110
--   * HackRF Jawbreaker
111 4 horiz0n
--   * nuand bladeRF
112 1 horiz0n
-- 
113
-- ######################################################
114
-- # gr-osmosdr disabled components                        
115
-- ######################################################
116
-- 
117
-- Building for version: 4c101ea4 / 0.0.1git
118
-- Using install prefix: /usr/local
119
}}}
120
121
Now build & install
122
{{{
123
make
124
sudo make install
125
sudo ldconfig
126
}}}
127
128
==== Automated installation ====
129
130
Marcus D. Leech has kindly integrated the forementioned build steps into his gnuradio installation script at [http://www.sbrac.org/files/build-gnuradio]. This is the most user-friendly option so far.
131
132 6 horiz0n
You also may try the ByBOMBS developed by gnuradio.org folks.
133 1 horiz0n
134
== Plugins ==
135
136
The following 3rd party plugins are available:
137
138
||'''Name'''||'''Author'''||'''URL'''||
139
||pocsag||who's first?||...||
140
||ads-b||who's first?||...||
141
||apco p25||who's first?||...||
142
||tetra||who's first?||...||
143
144
[[br]]
145
Not using sdrangelove? Tell us why! :)
146
[[br]][[br]][[br]]
147
148
== Credits ==
149
150 2 horiz0n
sdrangelove is developed by Christian Daniel of [http://maintech.de maintech GmbH] with contributions from Hoernchen and Dimitri Stolnikov.
Add picture from clipboard (Maximum size: 48.8 MB)