]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Setting new NR/filter values when mode changed via band/bandstack change
authorChef <chwu@eduroam-ipv4-5-0479.triple-a.uni-kl.de>
Sun, 26 Jul 2020 14:42:28 +0000 (16:42 +0200)
committerChef <chwu@eduroam-ipv4-5-0479.triple-a.uni-kl.de>
Sun, 26 Jul 2020 14:42:28 +0000 (16:42 +0200)
vfo.c

diff --git a/vfo.c b/vfo.c
index b5e500e69accdb6d73768eee1e2ac1b40cfab554..668ea355fa47e816ffffd8a19625b85dd14acdd5 100644 (file)
--- a/vfo.c
+++ b/vfo.c
@@ -270,6 +270,7 @@ void vfo_xvtr_changed() {
 
 void vfo_band_changed(int id,int b) {
   BANDSTACK *bandstack;
+  int m; 
 
 #ifdef CLIENT_SERVER
   if(radio_is_remote) {
@@ -302,6 +303,22 @@ void vfo_band_changed(int id,int b) {
   vfo[id].filter=entry->filter;
   vfo[id].lo=band->frequencyLO+band->errorLO;
 
+//
+// Change to the filter/NR combination stored for this mode
+//
+  m=vfo[id].mode;
+
+  vfo[id].filter      =mode_settings[m].filter;
+  active_receiver->nr =mode_settings[m].nr;
+  active_receiver->nr2=mode_settings[m].nr2;
+  active_receiver->nb =mode_settings[m].nb;
+  active_receiver->nb2=mode_settings[m].nb2;
+  active_receiver->anf=mode_settings[m].anf;
+  active_receiver->snb=mode_settings[m].snb;
+
+  // make changes effective
+  g_idle_add(ext_update_noise, NULL);
+
   // turn off ctun
   vfo[id].ctun=0;
   vfo[id].ctun_frequency=0LL;