From: c vw <dl1ycf@darc.de>
Date: Wed, 9 Dec 2020 11:31:26 +0000 (+0100)
Subject: Display "11 k" for filter size in FMN with small deviation.
X-Git-Url: https://git.rkrishnan.org/vdrive/components/schema.xhtml?a=commitdiff_plain;h=1401511775a4837085845b39acd890fddb08028d;p=pihpsdr.git

Display "11 k" for filter size in FMN with small deviation.
---

diff --git a/vfo.c b/vfo.c
index b5b0cb5..feae33a 100644
--- a/vfo.c
+++ b/vfo.c
@@ -1039,8 +1039,11 @@ void vfo_update() {
 
         switch(vfo[id].mode) {
           case modeFMN:
+            //
+            // filter edges are +/- 5500 if deviation==2500,
+            //              and +/- 8000 if deviation==5000
             if(active_receiver->deviation==2500) {
-              sprintf(temp_text,"%s 8k",mode_string[vfo[id].mode]);
+              sprintf(temp_text,"%s 11k",mode_string[vfo[id].mode]);
             } else {
               sprintf(temp_text,"%s 16k",mode_string[vfo[id].mode]);
             }