aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fcd
AgeCommit message (Collapse)AuthorFilesLines
2013-07-14fcd: add support for FUNcube Dongle Pro+Dimitri Stolnikov3-38/+257
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-05-30introduce osmosdr namespace, remove _c suffixDimitri Stolnikov3-41/+41
- 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 Stolnikov2-11/+11
2013-04-30source/sink: rename antennas to express their functionDimitri Stolnikov1-1/+1
2013-03-12remove APPEND from include_directoriesDimitri Stolnikov1-1/+1
2013-02-16remove unused self()Dimitri Stolnikov2-7/+0
2013-02-16remove gain_mode getter/setter where not usedDimitri Stolnikov2-12/+0
2013-01-01update tuning rangesDimitri Stolnikov1-1/+1
2012-07-01update gain namesDimitri Stolnikov1-1/+1
2012-05-20introduce device discovery apiDimitri Stolnikov1-2/+10
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-17change gain mode argument to 'automatic' for clarityDimitri Stolnikov2-2/+2
2012-05-12uhd: added UHD as dependency for the gr-uhd based moduleDimitri Stolnikov1-1/+4
this may be required for compilation since the gnuradio trunk doesn't provide UHD's include path via pkg-config.
2012-05-12append dependency include dirs when building componentsDimitri Stolnikov1-1/+1
2012-05-05pick first device if no device arguments were specifiedDimitri Stolnikov1-23/+35
2012-05-05add api for manual gain mode controlDimitri Stolnikov2-0/+12
2012-04-28first working multichannel sourceDimitri Stolnikov2-39/+44
2012-04-26fcd: add initial component filesDimitri Stolnikov3-0/+343