From 9569fbd72e9ae7634a87d6eee741a73d2c153399 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 22 Oct 2016 21:51:51 +0000 Subject: [PATCH] narrower filter for dstar & nxdn --- htdocs/openwebrx.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js index 38138a1..c4479d7 100644 --- a/htdocs/openwebrx.js +++ b/htdocs/openwebrx.js @@ -429,11 +429,16 @@ function demodulator_default_analog(offset_frequency,subtype) this.low_cut=-4000; this.high_cut=4000; } - else if(subtype=="dmr" || subtype=="dstar" || subtype=="nxdn") + else if(subtype=="dmr") { this.low_cut=-6500; this.high_cut=6500; } + else if(subtype=="dstar" || subtype=="nxdn") + { + this.low_cut=-3250; + this.high_cut=3250; + } else if(subtype=="am") { this.low_cut=-4000;