From c1d8fceea593d70d524b0ce3d255aa68d3bbe3ed Mon Sep 17 00:00:00 2001 From: ha7ilm Date: Thu, 19 Jan 2017 19:49:09 +0100 Subject: [PATCH] nmux: Small fixes --- config_webrx.py | 2 +- openwebrx.py | 2 +- plugins/dsp/csdr/plugin.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config_webrx.py b/config_webrx.py index b6c2d21..d46d002 100644 --- a/config_webrx.py +++ b/config_webrx.py @@ -176,7 +176,7 @@ csdr_dynamic_bufsize = False # This allows you to change the buffering mode of c csdr_print_bufsizes = False # This prints the buffer sizes used for csdr processes. csdr_through = False # Setting this True will print out how much data is going into the DSP chains. -nmux_memory = 70 #in megabytes. This sets the approximate size of the circular buffer used by nmux. +nmux_memory = 50 #in megabytes. This sets the approximate size of the circular buffer used by nmux. #Look up external IP address automatically from icanhazip.com, and use it as [server_hostname] """ diff --git a/openwebrx.py b/openwebrx.py index 84f4d66..0e22076 100755 --- a/openwebrx.py +++ b/openwebrx.py @@ -132,7 +132,7 @@ def main(): import_all_plugins("plugins/dsp/") #Pypy - if pypy: print "pypy detected (and now something completely different: a c code is expected to run at a speed of 3*10^8 m/s?)" + if pypy: print "pypy detected (and now something completely different: c code is expected to run at a speed of 3*10^8 m/s?)" #Change process name to "openwebrx" (to be seen in ps) try: diff --git a/plugins/dsp/csdr/plugin.py b/plugins/dsp/csdr/plugin.py index 60d6b4e..2498e99 100644 --- a/plugins/dsp/csdr/plugin.py +++ b/plugins/dsp/csdr/plugin.py @@ -54,7 +54,7 @@ class dsp_plugin: self.fft_averages = 50 def chain(self,which): - any_chain_base="ncat -v 127.0.0.1 {nc_port} | " + any_chain_base="nc -v 127.0.0.1 {nc_port} | " if self.csdr_dynamic_bufsize: any_chain_base+="csdr setbuf {start_bufsize} | " if self.csdr_through: any_chain_base+="csdr through | " any_chain_base+=self.format_conversion+(" | " if self.format_conversion!="" else "") ##"csdr flowcontrol {flowcontrol} auto 1.5 10 | "