From 1401511775a4837085845b39acd890fddb08028d Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 9 Dec 2020 12:31:26 +0100 Subject: [PATCH] Display "11 k" for filter size in FMN with small deviation. --- vfo.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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]); } -- 2.45.2