aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
2014-02-09airspy: add support for AirSpy wideband receiverDimitri Stolnikov1-0/+8
Requires https://github.com/airspy/host Usage example: osmocom_fft -a airspy The following named gain stages are available: LNA: 0 to 15, step 1 MIX: 0 to 15, step 1 IF: 0 to 15, step 1 At the moment the gains are not in dB but gain indices internal to R820t tuner.
2013-12-22rfspace: add support for RFSPACE SDR-IQ and SDR-IPDimitri Stolnikov1-5/+5
Usage example: osmocom_fft -a sdr-iq=/dev/ttyUSB0 osmocom_fft -a sdr-ip=host[:port] osmocom_fft -a netsdr=host[:port][,nchan=2] The following named gain stages are available: SDR-IQ: ATT: -20 to +10 dB, in 10dB steps SDR-IP: ATT: -30 to 0 dB, in 10dB steps The ftdi_sio driver is being used for SDR-IQ. It creates a character device of the form: crw-rw---- 1 root dialout 188, 0 Dec 19 22:14 /dev/ttyUSB0 To be able to open the device without root permissions add yourself to the "dialout" group or do a "chmod 666 /dev/ttyUSB0" after pluggin in.
2013-10-26netsdr: add support for RFSPACE NetSDR receiverDimitri Stolnikov1-0/+8
- implements broadcast UDP based device discovery - prints device information (serial/versions) on startup - reads available frequency range(s) from the device - integrity checks of IQ stream using sequence numbers - automatic bandpass or a wideband lowpass selectable The following named gain stages are available: ATT: -30 to 0 dB, in 10dB steps Known limitations: - setting the sample rate is possible only before the flowgraph has been started
2013-07-21bladerf: add support for nuand LLC bladeRF (WIP)Dimitri Stolnikov1-0/+8
This is based on the original work (https://github.com/Nuand/gr-osmosdr) done by folks at nuand LLC for the gr3.6 branch of gr-osmosdr. The following modifications have been done in this commit: * port to gr-osmosdr master codebase (gr3.7) * moved shared properties to bladerf_common * added & verified IF filter bandwidth setters * set LMS6002D registers with values taken from FAQ 5.27 * print device information (serial/versions) on startup * added fpga= and fw= device arguments to program MCU/FPGA * added bladerf=# dev. arg. to select a specific bladeRF * grc gain field controls RF path VGA for RX/TX * grc BB gain field controls BB path VGA for RX/TX Usage example: osmocom_fft -a "bladerf,fpga=/tmp/hostedx115.rbf" The following RX named gain stages are available: LNA: 0 to 6 dB, in 3dB steps VGA1: 5 to 30 dB, in 1dB steps; nonlinear mapping done inside the lib VGA2: 0 to 60 dB, in 3dB steps; not recommended to be used above 30dB The following TX named gain stages are available: VGA1: -35 to -4 dB, in 1dB steps, BB side VGA2: 0 to 25 dB, in 1dB steps, RF side Thanks a lot to the team of nuand LLC for this major contribution.
2013-07-14fcd: add support for FUNcube Dongle Pro+Dimitri Stolnikov1-2/+9
The gnuradio block https://github.com/dl1ksv/gr-fcdproplus must be installed before building gr-osmosdr. 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-06-07cmake: add gnuradio-pmt dependency for OSX linkageDimitri Stolnikov1-0/+1
2013-05-30introduce osmosdr namespace, remove _c suffixDimitri Stolnikov1-4/+4
- the namespace conversion adopts the common gnuradio coding guidelines - suffix removal is a preparation to support 8/16 bit complex data types
2013-05-29convert to gnuradio 3.7 interfaceDimitri Stolnikov1-4/+4
2013-04-16cmake: add windows dll resource fileDimitri Stolnikov1-0/+14
2013-04-14iqbal: fix c&p mistake in lib/CMakeLists.txtDimitri Stolnikov1-2/+2
2013-04-10cmake: handle iqbal like any other componentDimitri Stolnikov1-22/+10
2013-04-10hackrf: add support for HackRF devices through libhackrfDimitri Stolnikov1-1/+11
features: - gain control for LNA & VGA - frequency error correction - automatic baseband filter - up to 20M sampling rate limitations: - no DC offset correction implemented (yet) - no RX preamplifier control (disabled by default) - high sampling rates may not work on slow machines
2013-03-17use GR_LIBRARY_FOO() to comply with gnuradio library naming schemeDimitri Stolnikov1-14/+1
2013-03-12remove APPEND from include_directoriesDimitri Stolnikov1-1/+1
2013-03-12This reverts commit 3fb4f96bb7f17753849fdd94ccbd7f6c70e5f1b4.Hoernchen1-2/+2
This reverts commit 1772222cb3c82ad2cab608911a159776bc2c2979. reorder include dirs
2013-03-11workaround for build system related bug caused by gnuradio masterDimitri Stolnikov1-1/+1
They really should not name the header config.h: http://gnuradio.org/cgit/gnuradio.git/commit/?id=9297c84dfdae3002677f759ef2b38a877d2edc2c
2013-03-11add support for software IQ imbalance correctionDimitri Stolnikov1-0/+7
this functionality depend on the gr-iqbal blocks developed by Sylvain Munaut and is a compile time dependency: http://cgit.osmocom.org/cgit/gr-iqbal
2012-09-30add support for MSi2500 based DVB-T dongles through libmirisdrDimitri Stolnikov1-0/+10
this has been tested with analog modes only and still has to be verified with the usual digital modes for proper implementation.
2012-05-26osmosdr: change implementation to use libosmosdrDimitri Stolnikov1-1/+1
2012-05-20introduce device discovery apiDimitri Stolnikov1-0/+1
This API allows to acquire a list of devices connected to the host and creates an argument string ready to be passed to a source object for cunstruction. Each device_t entry contains a "label" entry, which holds the generic device name which may be shown to the user for device selection. For certain radio hardware extended entries ("name", "serial", "type") may be available to make bijective device addressing possible. The argument string for target types "rtl_tcp" and "file" might be constructed using the osmosdr::device_t class facilities. Example: #include <osmosdr_device.h> #include <osmosdr_source_c.h> osmosdr::devices_t devs = osmosdr::device::find(); BOOST_FOREACH(osmosdr::device_t &dev, devs) // try to create each dev osmosdr_source_c_sptr src = osmosdr_make_source_c(dev.to_string());
2012-05-12uhd: added UHD as dependency for the gr-uhd based moduleDimitri Stolnikov1-5/+5
this may be required for compilation since the gnuradio trunk doesn't provide UHD's include path via pkg-config.
2012-05-05rtl_tcp: add initial component filesDimitri Stolnikov1-0/+10
For use with the rtl_tcp utility acting as a spectrum server. The "empty" rtl_tcp= device hint might be used to connect to rtl_tcp running on local machine.
2012-04-29file: initial file source supportDimitri Stolnikov1-0/+10
Example: file=/path/to/file.ext,freq=428e6,rate=1e6,repeat=true,throttle=true
2012-04-26update build system to check for component dependenciesDimitri Stolnikov1-19/+80
this will only enable components if the dependencies were met.
2012-04-06initial commitDimitri Stolnikov1-0/+57