projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
72195ab
)
Display "11 k" for filter size in FMN with small deviation.
author
c vw
<dl1ycf@darc.de>
Wed, 9 Dec 2020 11:31:26 +0000
(12:31 +0100)
committer
c vw
<dl1ycf@darc.de>
Wed, 9 Dec 2020 11:31:26 +0000
(12:31 +0100)
vfo.c
patch
|
blob
|
history
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
8
k",mode_string[vfo[id].mode]);
+ sprintf(temp_text,"%s
11
k",mode_string[vfo[id].mode]);
} else {
sprintf(temp_text,"%s 16k",mode_string[vfo[id].mode]);
}