]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Cleanup code to remove unused txLO and txError
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Sun, 23 Feb 2020 11:54:19 +0000 (11:54 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Sun, 23 Feb 2020 11:54:19 +0000 (11:54 +0000)
band.c
band.h
new_menu.c
new_menu.h
rx_panadapter.c
soapy_discovery.c
soapy_protocol.c
tx_panadapter.c
vfo.c
vfo.h
xvtr_menu.c

diff --git a/band.c b/band.c
index 92543d2caa3ee7548879d36a9af2d885dc4c7b60..d93df5bec0a69bea6bb2eb144e6b160ce685f792 100644 (file)
--- a/band.c
+++ b/band.c
@@ -457,15 +457,6 @@ void bandSaveState() {
         sprintf(name,"band.%d.errorLO",b);
         setProperty(name,value);
 
-        sprintf(value,"%lld",bands[b].txFrequencyLO);
-        sprintf(name,"band.%d.txFrequencyLO",b);
-        setProperty(name,value);
-
-        sprintf(value,"%lld",bands[b].txErrorLO);
-        sprintf(name,"band.%d.txErrorLO",b);
-        setProperty(name,value);
-
-
         sprintf(value,"%d",bands[b].disablePA);
         sprintf(name,"band.%d.disablePA",b);
         setProperty(name,value);
@@ -582,14 +573,6 @@ void bandRestoreState() {
         value=getProperty(name);
         if(value) bands[b].errorLO=atoll(value);
 
-        sprintf(name,"band.%d.txFrequencyLO",b);
-        value=getProperty(name);
-        if(value) bands[b].txFrequencyLO=atoll(value);
-
-        sprintf(name,"band.%d.txErrorLO",b);
-        value=getProperty(name);
-        if(value) bands[b].txErrorLO=atoll(value);
-
         sprintf(name,"band.%d.disablePA",b);
         value=getProperty(name);
         if(value) bands[b].disablePA=atoi(value);
diff --git a/band.h b/band.h
index 7d2de4d606d3b564a41dc30254a11c8334243078..4163ce5b940fa2e082d859aea128fd2b1c036f37 100644 (file)
--- a/band.h
+++ b/band.h
@@ -73,8 +73,6 @@ struct _BAND {
     long long frequencyMax;
     long long frequencyLO;
     long long errorLO;
-    long long txFrequencyLO;
-    long long txErrorLO;
     int disablePA;
 };
 
index d354574775f631a8352e5002cf29af696b3c3b23..4b943c18f62f121177b842d83d60068c17dd4780 100644 (file)
@@ -331,8 +331,12 @@ static gboolean diversity_cb (GtkWidget *widget, GdkEventButton *event, gpointer
 }
 
 void start_vfo() {
+  int old_menu=active_menu;
   cleanup();
-  vfo_menu(top_window);
+  if(old_menu!=VFO_MENU) {
+    vfo_menu(top_window);
+    active_menu=VFO_MENU;
+  }
 }
 
 static gboolean vfo_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) {
index 0d8bdc01758d723a448e6bde12422a1bf9d1cecc..d087f924418a8e91d75cd8ef166946ccec59ff5a 100644 (file)
@@ -38,7 +38,8 @@ enum {
   MODE_MENU,
   FILTER_MENU,
   NOISE_MENU,
-  AGC_MENU
+  AGC_MENU,
+  VFO_MENU
 };
 
 extern int active_menu;
index 3db0fed85da6f31cc2da5769dc90ed37a5c1053a..ae696f15a92ac1f9e7cc24c4a8b7e9ad19c30b38 100644 (file)
@@ -263,12 +263,12 @@ void rx_panadapter_update(RECEIVER *rx) {
       divisor=50000L;
       break;
     case 768000:
-      divisor=50000L;
+      divisor=100000L;
       break;
     case 1048576:
     case 1536000:
     case 2097152:
-      divisor=100000L;
+      divisor=200000L;
       break;
   }
   for(i=0;i<display_width;i++) {
index 9633428ed1e44c3534a9d8ec50518ee4d6ca48ca..db472d94b1056a3873cd26daf949a7bd622d4674 100644 (file)
@@ -109,11 +109,9 @@ static void get_info(char *driver) {
         if((384000.0>=rx_rates[i].minimum) && (384000<=(int)rx_rates[i].maximum)) {
           sample_rate=384000;
         }
-/*
         if((768000.0>=rx_rates[i].minimum) && (768000<=(int)rx_rates[i].maximum)) {
           sample_rate=768000;
         }
-*/
       }
     }
   }
index a6bd4ea5326fac1d57058a280e52016b6fb46fd8..6a988e6d65e27a7297b7c4d38df277b0c8d7ac40 100644 (file)
@@ -375,11 +375,10 @@ void soapy_protocol_set_tx_frequency(TRANSMITTER *tx) {
 
   v=get_tx_vfo();
   if(soapy_device!=NULL) {
-    //f=(double)(vfo[v].frequency+vfo[v].ctun_frequency-vfo[v].lo_tx);
     if(vfo[v].ctun) {
-      f=(double)(vfo[v].ctun_frequency-vfo[v].lo_tx);
+      f=(double)(vfo[v].ctun_frequency);
     } else {
-      f=(double)(vfo[v].frequency-vfo[v].lo_tx);
+      f=(double)(vfo[v].frequency);
     }
 
     if(transmitter->xit_enabled) {
index 202e7f8aab6e5ee011674c59b975c69ba4c8ac5a..403deeaf9804093de2ebf148c1c6cd8b4d193239 100644 (file)
@@ -241,13 +241,12 @@ void tx_panadapter_update(TRANSMITTER *tx) {
   }
 
   // plot frequency markers
-  //long long half=24000LL; //(long long)(tx->output_rate/2);
   long long half=6000LL; //(long long)(tx->output_rate/2);
   long long frequency;
   if(vfo[txvfo].ctun) {
-    frequency=vfo[txvfo].ctun_frequency-vfo[txvfo].lo_tx;
+    frequency=vfo[txvfo].ctun_frequency;
   } else {
-    frequency=vfo[txvfo].frequency-vfo[txvfo].lo_tx;
+    frequency=vfo[txvfo].frequency;
   }
   double vfofreq=(double)display_width * 0.5;
   if (!cw_is_on_vfo_freq) {
diff --git a/vfo.c b/vfo.c
index f83cf67bfa23ffbf9fc890175d0e4cd45f9e484e..9c41bdb1bf03eaa301cfe17e12fe020774177177 100644 (file)
--- a/vfo.c
+++ b/vfo.c
@@ -168,9 +168,6 @@ void vfo_save_state() {
     sprintf(name,"vfo.%d.lo",i);
     sprintf(value,"%lld",vfo[i].lo);
     setProperty(name,value);
-    sprintf(name,"vfo.%d.lo_tx",i);
-    sprintf(value,"%lld",vfo[i].lo_tx);
-    setProperty(name,value);
     sprintf(name,"vfo.%d.ctun_frequency",i);
     sprintf(value,"%lld",vfo[i].ctun_frequency);
     setProperty(name,value);
@@ -244,9 +241,6 @@ g_print("vfo_restore_state: band=%d frequency=%lld\n",vfo[i].band,vfo[i].frequen
     sprintf(name,"vfo.%d.filter",i);
     value=getProperty(name);
     if(value) vfo[i].filter=atoi(value);
-    sprintf(name,"vfo.%d.lo_tx",i);
-    value=getProperty(name);
-    if(value) vfo[i].lo_tx=atoll(value);
     // Sanity check: if !ctun, offset must be zero
     if (!vfo[i].ctun) {
        vfo[i].offset=0;
@@ -293,7 +287,6 @@ void vfo_band_changed(int b) {
   vfo[id].mode=entry->mode;
   vfo[id].filter=entry->filter;
   vfo[id].lo=band->frequencyLO+band->errorLO;
-  vfo[id].lo_tx=band->txFrequencyLO+band->txErrorLO;
 
   // turn off ctun
   vfo[id].ctun=0;
diff --git a/vfo.h b/vfo.h
index bd08e57600bf1c3d3317eac8740f26e871dd3fa4..f2927bc9a10d04f316ac38f9e42682fdc427ec18 100644 (file)
--- a/vfo.h
+++ b/vfo.h
@@ -43,7 +43,6 @@ struct _vfo {
 
   long long lo;
   long long offset;
-  long long lo_tx;
 
 } vfo[MAX_VFOS];
 
index 805ded78ca6672bcc18ce07cee2800c6855c72ae..c8b7d83ef3acd5aa088d2c67c7248c25c80fd700 100644 (file)
@@ -68,14 +68,6 @@ static void save_xvtr () {
         xvtr->frequencyLO=(long long)(atof(lof)*1000000.0);
         loerr=gtk_entry_get_text(GTK_ENTRY(lo_error[i]));
         xvtr->errorLO=atoll(loerr);
-/*
-        txlof=gtk_entry_get_text(GTK_ENTRY(tx_lo_frequency[i]));
-        xvtr->txFrequencyLO=(long long)(atof(txlof)*1000000.0);
-        txloerr=gtk_entry_get_text(GTK_ENTRY(tx_lo_error[i]));
-        xvtr->txErrorLO=atoll(txloerr);
-*/
-        xvtr->txFrequencyLO=0LL;
-        xvtr->txErrorLO=0LL;
         xvtr->disablePA=gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(disable_pa[i]));
 
         for(b=0;b<bandstack->entries;b++) {
@@ -105,7 +97,6 @@ void update_receiver(int band,gboolean error) {
     BAND *xvtr=band_get_band(band);
 //g_print("update_receiver: found band: %s\n",xvtr->title);
     vfo[0].lo=xvtr->frequencyLO+xvtr->errorLO;
-    vfo[0].lo_tx=xvtr->txFrequencyLO+xvtr->txErrorLO;
     saved_ctun=vfo[0].ctun;
     if(saved_ctun) {
       vfo[0].ctun=FALSE;
@@ -170,22 +161,6 @@ g_print("lo_error_update: band=%d\n",vfo[0].band);
   update_receiver(vfo[0].band,TRUE);
 }
 
-void tx_lo_frequency_cb(GtkEditable *editable,gpointer user_data) {
-  int band=GPOINTER_TO_INT(user_data);
-  BAND *xvtr=band_get_band(band);
-  const char* lof=gtk_entry_get_text(GTK_ENTRY(tx_lo_frequency[band]));
-  xvtr->txFrequencyLO=(long long)(atof(lof)*1000000.0);
-  update_receiver(band,FALSE);
-}
-
-void tx_lo_error_cb(GtkEditable *editable,gpointer user_data) {
-  int band=GPOINTER_TO_INT(user_data);
-  BAND *xvtr=band_get_band(band);
-  const char* errorf=gtk_entry_get_text(GTK_ENTRY(tx_lo_error[band]));
-  xvtr->txErrorLO=atoll(errorf);
-  update_receiver(band,TRUE);
-}
-
 static void cleanup() {
   save_xvtr();
   if(dialog!=NULL) {