update documentation

This commit is contained in:
Dimitri Stolnikov 2015-12-18 22:20:27 +01:00
parent 3582ba17e0
commit 55fe961987
3 changed files with 9 additions and 4 deletions

2
README
View File

@ -11,10 +11,12 @@ as well supports:
* gnuradio .cfile input through libgnuradio-blocks * gnuradio .cfile input through libgnuradio-blocks
* RFSPACE SDR-IQ, SDR-IP, NetSDR (incl. X2 option) * RFSPACE SDR-IQ, SDR-IP, NetSDR (incl. X2 option)
* AirSpy Wideband Receiver through libairspy * AirSpy Wideband Receiver through libairspy
* CCCamp 2015 rad1o Badge through libhackrf
* Great Scott Gadgets HackRF through libhackrf * Great Scott Gadgets HackRF through libhackrf
* Nuand LLC bladeRF through libbladeRF library * Nuand LLC bladeRF through libbladeRF library
* Ettus USRP Devices through Ettus UHD library * Ettus USRP Devices through Ettus UHD library
* Fairwaves UmTRX through Fairwaves' fork of UHD * 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 By using the OsmoSDR block you can take advantage of a common software api in
your application(s) independent of the underlying radio hardware. your application(s) independent of the underlying radio hardware.

View File

@ -219,10 +219,12 @@ While primarily being developed for the OsmoSDR hardware, this block as well sup
* RFSPACE SDR-IQ, SDR-IP, NetSDR (incl. X2 option) * RFSPACE SDR-IQ, SDR-IP, NetSDR (incl. X2 option)
* AirSpy Wideband Receiver through libairspy * AirSpy Wideband Receiver through libairspy
#end if #end if
* CCCamp 2015 rad1o Badge through libhackrf
* Great Scott Gadgets HackRF through libhackrf * Great Scott Gadgets HackRF through libhackrf
* Nuand LLC bladeRF through libbladeRF library * Nuand LLC bladeRF through libbladeRF library
* Ettus USRP Devices through Ettus UHD library * Ettus USRP Devices through Ettus UHD library
* Fairwaves UmTRX through Fairwaves' fork of UHD * Fairwaves UmTRX through Fairwaves' fork of UHD
* Red Pitaya SDR transceiver (http://bazaar.redpitaya.com)
By using the osmocom $sourk block you can take advantage of a common software api in your application(s) independent of the underlying radio hardware. By using the osmocom $sourk block you can take advantage of a common software api in your application(s) independent of the underlying radio hardware.
@ -253,6 +255,7 @@ Lines ending with ... mean it's possible to bind devices together by specifying
sdr-iq=/dev/ttyUSB0 sdr-iq=/dev/ttyUSB0
airspy=0[,bias=0|1] airspy=0[,bias=0|1]
#end if #end if
redpitaya=192.168.1.100[:1001]
hackrf=0[,buffers=32][,bias=0|1][,bias_tx=0|1] hackrf=0[,buffers=32][,bias=0|1][,bias_tx=0|1]
bladerf=0[,fpga='/path/to/the/bitstream.rbf'] bladerf=0[,fpga='/path/to/the/bitstream.rbf']
uhd[,serial=...][,lo_offset=0][,mcr=52e6][,nchan=2][,subdev='\\\\'B:0 A:0\\\\''] ... uhd[,serial=...][,lo_offset=0][,mcr=52e6][,nchan=2][,subdev='\\\\'B:0 A:0\\\\''] ...
@ -297,11 +300,11 @@ Overall RF gain of the device.
IF Gain: IF Gain:
Overall intermediate frequency gain of the device. Overall intermediate frequency gain of the device.
This setting is available for RTL-SDR and OsmoSDR devices with E4000 tuners and HackRF Jawbreaker in receive and transmit mode. Observations lead to a reasonable gain range from 15 to 30dB. This setting is available for RTL-SDR and OsmoSDR devices with E4000 tuners and HackRF in receive and transmit mode. Observations lead to a reasonable gain range from 15 to 30dB.
BB Gain: BB Gain:
Overall baseband gain of the device. Overall baseband gain of the device.
This setting is available for HackRF Jawbreaker in receive mode. Observations lead to a reasonable gain range from 15 to 30dB. This setting is available for HackRF in receive mode. Observations lead to a reasonable gain range from 15 to 30dB.
Antenna: Antenna:
For devices with only one antenna, this may be left blank. For devices with only one antenna, this may be left blank.

View File

@ -195,7 +195,7 @@ endif(ENABLE_NONFREE)
######################################################################## ########################################################################
# Setup HackRF component # Setup HackRF component
######################################################################## ########################################################################
GR_REGISTER_COMPONENT("HackRF Jawbreaker" ENABLE_HACKRF LIBHACKRF_FOUND) GR_REGISTER_COMPONENT("HackRF & rad1o Badge" ENABLE_HACKRF LIBHACKRF_FOUND)
if(ENABLE_HACKRF) if(ENABLE_HACKRF)
GR_INCLUDE_SUBDIRECTORY(hackrf) GR_INCLUDE_SUBDIRECTORY(hackrf)
endif(ENABLE_HACKRF) endif(ENABLE_HACKRF)
@ -235,7 +235,7 @@ endif(ENABLE_SOAPY)
######################################################################## ########################################################################
# Setup Red Pitaya component # Setup Red Pitaya component
######################################################################## ########################################################################
GR_REGISTER_COMPONENT("Red Pitaya support" ENABLE_REDPITAYA) GR_REGISTER_COMPONENT("Red Pitaya SDR" ENABLE_REDPITAYA)
if(ENABLE_REDPITAYA) if(ENABLE_REDPITAYA)
GR_INCLUDE_SUBDIRECTORY(redpitaya) GR_INCLUDE_SUBDIRECTORY(redpitaya)
endif(ENABLE_REDPITAYA) endif(ENABLE_REDPITAYA)