From 9171f4429c08533c3f372d931d327a2d97008d1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Retzler?= Date: Wed, 19 Apr 2017 10:53:26 +0200 Subject: [PATCH] Updated Using SoapySDR via rx_tools with OpenWebRX (markdown) --- Using-SoapySDR-via-rx_tools-with-OpenWebRX.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Using-SoapySDR-via-rx_tools-with-OpenWebRX.md b/Using-SoapySDR-via-rx_tools-with-OpenWebRX.md index 8e1907d..71128c7 100644 --- a/Using-SoapySDR-via-rx_tools-with-OpenWebRX.md +++ b/Using-SoapySDR-via-rx_tools-with-OpenWebRX.md @@ -91,7 +91,8 @@ You can terminate it by pressing Ctrl+C multiple times, or ## Step #4: Edit OpenWebRX configuration Uncomment the corresponding lines in `config_webrx.py`: ```python -start_rtl_command="rx_sdr -F CF32 -s {samp_rate} -f {center_freq} -p {ppm} -g {rf_gain} -".format(rf_gain=rf_gain, center_freq=center_freq, samp_rate=samp_rate, ppm=ppm) +soapy_device_query="0" #can be a number or can correspond to a driver, e.g. soapy_device_query="driver=hackrf", see `rx_sdr --help` +start_rtl_command="rx_sdr -d {device_query} -F CF32 -s {samp_rate} -f {center_freq} -p {ppm} -g {rf_gain} -".format(device_query=soapy_device_query, rf_gain=rf_gain, center_freq=center_freq, samp_rate=samp_rate, ppm=ppm) format_conversion="" ```