Airspy HF: removed the integer processing plugin. Updated documentation

pull/147/head
f4exb 2018-02-06 00:29:55 +01:00
rodzic 2ee3161b50
commit f53a5f6e6e
4 zmienionych plików z 2 dodań i 5 usunięć

Wyświetl plik

@ -77,7 +77,7 @@ Be also aware that the lower rates (2.5 MS/s or 5 MS/s with modified firmware) a
<h2>Airspy HF+</h2>
[Airspy HF+](https://airspy.com/airspy-hf-plus/) is supported through [my fork of the airspyhf library](https://github.com/f4exb/airspyhf). This is needed because SDRangel uses integer samples at its input. The original library post processes the integer samples from the device and presents them as float samples without any other option.
[Airspy HF+](https://airspy.com/airspy-hf-plus/) is supported through [the airspyhf library](https://github.com/airspy/airspyhf).
If you use your own location for libairspyhf install directory you need to specify library and include locations. Example with `/opt/install/libairspyhf` with the following defines on `cmake` command line:

Wyświetl plik

@ -40,7 +40,6 @@ endif(LIBUSB_FOUND AND LIBAIRSPY_FOUND)
find_package(LibAIRSPYHF)
if(LIBUSB_FOUND AND LIBAIRSPYHF_FOUND)
add_subdirectory(airspyhf)
add_subdirectory(airspyhfi)
endif(LIBUSB_FOUND AND LIBAIRSPYHF_FOUND)
find_package(LibHACKRF)

Wyświetl plik

@ -135,8 +135,6 @@ bool AirspyHFInput::openDevice()
delete[] sampleRates;
airspyhf_set_sample_type(m_dev, AIRSPYHF_SAMPLE_FLOAT32_IQ);
return true;
}

Wyświetl plik

@ -6,7 +6,7 @@ This input sample source plugin gets its samples from a [Airspy HF+ device](http
<h2>Build</h2>
The plugin will be built only if the [Airspy HF library](https://github.com/f4exb/airspyhf) is installed in your system. Please note that you should use my fork as it deals with integer samples. The branch to check out is `intsamples` but this is the default in Github.
The plugin will be built only if the [Airspy HF library](https://github.com/airspy/airspyhf) is installed in your system.
If you build it from source and install it in a custom location say: `/opt/install/libairspyhf` you will have to add `-DLIBRTLSDR_INCLUDE_DIR=/opt/install/libairspyhf/include -DLIBRTLSDR_LIBRARIES=/opt/install/libairspyhf/lib/libairspyhf.so` to the cmake command line.