GNU Radio block for interfacing with various radio hardware
Go to file
Josh Blum ae686c462d soapy: support newer getBandwidthRange() API call
Switch to the newer API call which can provide a list of ranges.
There are feature detection ifdefs provided by the library
so that code will always correctly compile.
2016-06-22 18:13:11 -07:00
apps apps: implement --peak-hold option for fft 2016-02-28 17:50:54 +01:00
cmake cmake: If we are cross compiling, we shouldn't make decisions based on 2016-01-10 22:17:09 +01:00
docs introduce osmosdr namespace, remove _c suffix 2013-05-30 16:14:22 +02:00
grc bladerf: implement options for clock configuration 2016-02-28 17:45:54 +01:00
include/osmosdr introduce time & clock synchronisation APIs 2014-11-25 20:47:59 +01:00
lib soapy: support newer getBandwidthRange() API call 2016-06-22 18:13:11 -07:00
python python: Remove an old workaround for a swig bug 2014-08-25 22:33:12 +02:00
swig introduce time & clock synchronisation APIs 2014-11-25 20:47:59 +01:00
AUTHORS cmake: update component name & update AUTHORS file 2016-01-10 22:28:15 +01:00
CMakeLists.txt bladerf: implement options for clock configuration 2016-02-28 17:45:54 +01:00
COPYING update license file to GPL v3 as in source 2012-04-21 14:07:25 +02:00
MANIFEST.md updated MANIFEST.md 2015-05-14 00:22:39 +02:00
README update documentation 2015-12-18 22:20:27 +01:00
gnuradio-osmosdr.pc.in cmake: update url to documentation page 2013-06-08 17:39:09 +02:00

README

While primarily being developed for the OsmoSDR hardware, this block
as well supports:

 * FUNcube Dongle through libgnuradio-fcd
 * FUNcube Dongle Pro+ through gr-fcdproplus
 * sysmocom OsmoSDR Devices through libosmosdr
 * RTL2832U based DVB-T dongles through librtlsdr
 * RTL-TCP spectrum server (see librtlsdr project)
 * MSi2500 based DVB-T dongles through libmirisdr
 * SDRplay RSP through SDRplay API library
 * gnuradio .cfile input through libgnuradio-blocks
 * RFSPACE SDR-IQ, SDR-IP, NetSDR (incl. X2 option)
 * AirSpy Wideband Receiver through libairspy
 * CCCamp 2015 rad1o Badge through libhackrf
 * Great Scott Gadgets HackRF through libhackrf
 * Nuand LLC bladeRF through libbladeRF library
 * Ettus USRP Devices through Ettus UHD library
 * Fairwaves UmTRX through Fairwaves' fork of UHD
 * Red Pitaya SDR transceiver (http://bazaar.redpitaya.com)

By using the OsmoSDR block you can take advantage of a common software api in
your application(s) independent of the underlying radio hardware.

For installation and usage guidelines please read the documentation available
at http://sdr.osmocom.org/trac/wiki/GrOsmoSDR

For the impatient :) a short excerpt:

The Gnu Radio block requires a recent gnuradio (>= v3.7) to be installed.

Before building the block you have to make sure that all the dependencies
(see list of supported devices above) you are intend to work with are
properly installed. The build system of gr-osmosdr will recognize them and
enable specific source/sink components thereafter.

Please note: prior pulling a new version from git and compiling it,
please do a "make uninstall" first to properly remove the previous version.

Building with cmake:

git clone git://git.osmocom.org/gr-osmosdr
cd gr-osmosdr/
mkdir build
cd build/
cmake ../
make
sudo make install
sudo ldconfig

NOTE: The osmocom blocks will appear under 'Sources' and 'Sinks' categories
in GRC menu.