From c0d4b2f6a5b3b700b988ecabdd7822658e4ed596 Mon Sep 17 00:00:00 2001 From: Jim Ancona Date: Thu, 12 Nov 2020 17:36:36 -0500 Subject: [PATCH] Remove debug option, mention in config_webrx.py --- config_webrx.py | 4 ++-- owrx/source/hpsdr.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config_webrx.py b/config_webrx.py index 6e0765f..4d77812 100644 --- a/config_webrx.py +++ b/config_webrx.py @@ -99,7 +99,7 @@ digital_voice_unvoiced_quality = 1 digital_voice_dmr_id_lookup = True """ -Note: if you experience audio underruns while CPU usage is 100%, you can: +Note: if you experience audio underruns while CPU usage is 100%, you can: - decrease `samp_rate`, - set `fft_voverlap_factor` to 0, - decrease `fft_fps` and `fft_size`, @@ -116,7 +116,7 @@ Note: if you experience audio underruns while CPU usage is 100%, you can: # Currently supported types of sdr receivers: # "rtl_sdr", "rtl_sdr_soapy", "sdrplay", "hackrf", "airspy", "airspyhf", "fifi_sdr", -# "perseussdr", "lime_sdr", "pluto_sdr", "soapy_remote" +# "perseussdr", "lime_sdr", "pluto_sdr", "soapy_remote", "hpsdr" # # In order to use rtl_sdr, you will need to install librtlsdr-dev and the connector. # In order to use sdrplay, airspy or airspyhf, you will need to install soapysdr, the corresponding driver, and the diff --git a/owrx/source/hpsdr.py b/owrx/source/hpsdr.py index 383a1db..50cac77 100644 --- a/owrx/source/hpsdr.py +++ b/owrx/source/hpsdr.py @@ -29,6 +29,5 @@ class HpsdrSource(ConnectorSource): "samp_rate": Option("--samplerate"), "remote": Option("--radio"), "rf_gain": Option("--gain"), - "debug": Flag("--debug"), }) )