]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Display "11 k" for filter size in FMN with small deviation.
authorc vw <dl1ycf@darc.de>
Wed, 9 Dec 2020 11:31:26 +0000 (12:31 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 9 Dec 2020 11:31:26 +0000 (12:31 +0100)
vfo.c

diff --git a/vfo.c b/vfo.c
index b5b0cb51298e2140622dbde7987914bb775ad1ef..feae33a857e7b9d94f5a97eb06af64b9f8b236d1 100644 (file)
--- 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]);
             }