From cbdb14396677755faefa9e39001dbebfc94d928f Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 6 Dec 2020 23:24:57 +0100 Subject: [PATCH] allow 25kHz packet when manually adjusting --- htdocs/lib/Demodulator.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/lib/Demodulator.js b/htdocs/lib/Demodulator.js index a1f3798..de6f3c5 100644 --- a/htdocs/lib/Demodulator.js +++ b/htdocs/lib/Demodulator.js @@ -11,6 +11,8 @@ Filter.prototype.getLimits = function() { max_bw = 80000; } else if (this.demodulator.get_modulation() === 'drm') { max_bw = 100000; + } else if (this.demodulator.get_secondary_demod() === 'packet') { + max_bw = 12500; } else { max_bw = (audioEngine.getOutputRate() / 2) - 1; }