From 69a12650d2e619ec598a047ae66e7fc10be73917 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 8 Aug 2020 22:04:10 +0200 Subject: [PATCH] permit increased bandwidth for WFM --- htdocs/lib/Demodulator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/lib/Demodulator.js b/htdocs/lib/Demodulator.js index 1c47560..2216f7e 100644 --- a/htdocs/lib/Demodulator.js +++ b/htdocs/lib/Demodulator.js @@ -7,6 +7,8 @@ Filter.prototype.getLimits = function() { var max_bw; if (this.demodulator.get_secondary_demod() === 'pocsag') { max_bw = 12500; + } else if (this.demodulator.get_modulation() === 'wfm') { + max_bw = 80000; } else { max_bw = (audioEngine.getOutputRate() / 2) - 1; }