GNU Radio block for interfacing with various radio hardware
Go to file
Dimitri Stolnikov 7058fd6610 fcd: add support for FUNcube Dongle Pro+
The "3.6" branch of the gnuradio block https://github.com/dl1ksv/gr-

Available named gains:

Dongle Classic:

LNA: -5 to 30 dB, in 2.5 dB steps
MIX: 4 or 12 dB

Dongle Pro+:

LNA: 0 or 1, meaning off/on only. no information about real values.
MIX: 0 or 1, meaning off/on only. no information about real values.
BB: 0 to 59 dB, in 1 dB steps

This patch also introduces optional "device" and "type" arguments which
allow to override the values automatically picked by gr-osmosdr:

osmocom_fft -a "fcd,device=hw:2,type=2"

The "device" argument overrides the audio device used by the underlying
driver to access the dongle's IQ sample stream.

The "type" argument selects the dongle type, 1 for Classic, 2 for Pro+.

Thanks to Alexey Bazhin for the initial patch and Volker Schroer for
testing.
2013-07-28 19:16:28 +02:00
apps apps: allow float frequency correction values 2013-06-09 23:36:58 +02:00
cmake fcd: add support for FUNcube Dongle Pro+ 2013-07-28 19:16:28 +02:00
docs doxygen package needs to be detetected before the doxygen is used 2013-04-14 17:35:18 +02:00
grc fcd: add support for FUNcube Dongle Pro+ 2013-07-28 19:16:28 +02:00
include/osmosdr uhd: implement dc correction 2013-06-09 23:13:12 +02:00
lib fcd: add support for FUNcube Dongle Pro+ 2013-07-28 19:16:28 +02:00
python strip whitespace 2012-04-29 13:15:02 +02:00
swig cmake: require Python v2 for build configuration 2013-07-28 17:49:10 +02:00
AUTHORS add Steve and Hoernchen to AUTHORS file 2012-05-20 20:11:47 +02:00
CMakeLists.txt fcd: add support for FUNcube Dongle Pro+ 2013-07-28 19:16:28 +02:00
COPYING update license file to GPL v3 as in source 2012-04-21 14:07:25 +02:00
README fcd: add support for FUNcube Dongle Pro+ 2013-07-28 19:16:28 +02:00
gnuradio-osmosdr.pc.in cmake: update url to documentation page 2013-06-08 17:39:56 +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
 * Great Scott Gadgets HackRF through libhackrf
 * Ettus USRP Devices through Ettus UHD library
 * RTL2832U based DVB-T dongles through librtlsdr
 * RTL-TCP spectrum server (see librtlsdr project)
 * MSi2500 based DVB-T dongles through libmirisdr
 * gnuradio .cfile input through libgnuradio-core

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 gnuradio source requires a recent gnuradio (>= v3.6.4.1) to be installed.

Before building the source 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 source block will appear under 'Sources' category in GRC menu.