aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CMakeLists.txt
AgeCommit message (Collapse)AuthorFilesLines
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