From b4eca057152980d76b1ced4d6dad9eb27d825a4b Mon Sep 17 00:00:00 2001 From: d9394 <9394952@gmail.com> Date: Mon, 28 Oct 2019 15:57:43 +0800 Subject: [PATCH] Update config_webrx.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1, change temporary_directory to '/dev/shm' 2, add "device" parameter to hardware detail --- config_webrx.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config_webrx.py b/config_webrx.py index 5613d39..bc4c605 100644 --- a/config_webrx.py +++ b/config_webrx.py @@ -98,12 +98,14 @@ Note: if you experience audio underruns while CPU usage is 100%, you can: ################################################################################################# # Currently supported types of sdr receivers: "rtl_sdr", "sdrplay", "hackrf", "airspy" +# With "hackrf, airspy" , "device" is the device of specified serial number sdrs = { "rtlsdr": { "name": "RTL-SDR USB Stick", "type": "rtl_sdr", "ppm": 0, + "device": "0", # you can change this if you use an upconverter. formula is: # shown_center_freq = center_freq + lfo_offset # "lfo_offset": 0, @@ -130,6 +132,7 @@ sdrs = { "name": "SDRPlay RSP2", "type": "sdrplay", "ppm": 0, + "device": "0", "profiles": { "20m": { "name": "20m", @@ -260,7 +263,7 @@ wsjt_decoding_depth = 3 # jt65 seems to be somewhat prone to erroneous decodes, this setting handles that to some extent wsjt_decoding_depths = {"jt65": 1} -temporary_directory = "/tmp" +temporary_directory = "/dev/shm" services_enabled = False services_decoders = ["ft8", "ft4", "wspr", "packet"]