From e590c504e0faf08e868b9fe19996d0625fd2444e Mon Sep 17 00:00:00 2001 From: John Melton G0ORX Date: Tue, 24 Mar 2020 12:28:55 +0000 Subject: [PATCH] Removed some debug messages --- band.c | 1 - new_menu.c | 5 ----- xvtr_menu.c | 4 ---- 3 files changed, 10 deletions(-) diff --git a/band.c b/band.c index 9f3aff9..a8f0809 100644 --- a/band.c +++ b/band.c @@ -629,7 +629,6 @@ int get_band_from_frequency(long long f) { } } if (found < 0) found=bandGen; -g_print("get_band_from_frequency: %lld id %d\n",f,found); return found; } diff --git a/new_menu.c b/new_menu.c index 2cf9f84..ba24cfe 100644 --- a/new_menu.c +++ b/new_menu.c @@ -177,21 +177,18 @@ static gboolean pa_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) static gboolean rigctl_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) { cleanup(); - fprintf(stderr, "new_menu: calling rigctl_menu\n"); rigctl_menu(top_window); return TRUE; } static gboolean encoder_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) { cleanup(); - fprintf(stderr, "new_menu: calling encoder_menu\n"); encoder_menu(top_window); return TRUE; } static gboolean switch_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) { cleanup(); - fprintf(stderr, "new_menu: calling switch_menu\n"); switch_menu(top_window); return TRUE; } @@ -203,7 +200,6 @@ static gboolean cw_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) } static gboolean oc_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) { - g_print("oc_cb\n"); cleanup(); oc_menu(top_window); return TRUE; @@ -411,7 +407,6 @@ static gboolean ps_cb (GtkWidget *widget, GdkEventButton *event, gpointer data) void start_encoder(int encoder) { int old_menu=active_menu; cleanup(); -fprintf(stderr,"start_encoder: %d old_menu=%d active_menu=%d\n",encoder,old_menu,active_menu); switch(encoder) { case 2: if(old_menu!=E2_MENU) { diff --git a/xvtr_menu.c b/xvtr_menu.c index 7126cc1..a370b5a 100644 --- a/xvtr_menu.c +++ b/xvtr_menu.c @@ -74,7 +74,6 @@ static void save_xvtr () { entry->mode=modeUSB; entry->filter=filterF6; } -fprintf(stderr,"min=%s:%lld max=%s:%lld lo=%s:%lld\n",minf,xvtr->frequencyMin,maxf,xvtr->frequencyMax,lof,xvtr->frequencyLO); } else { xvtr->frequencyMin=0; xvtr->frequencyMax=0; @@ -139,7 +138,6 @@ void lo_frequency_cb(GtkEditable *editable,gpointer user_data) { } void lo_error_cb(GtkEditable *editable,gpointer user_data) { -g_print("lo_error_cb\n"); int band=GPOINTER_TO_INT(user_data); BAND *xvtr=band_get_band(band); const char* errorf=gtk_entry_get_text(GTK_ENTRY(lo_error[band])); @@ -148,7 +146,6 @@ g_print("lo_error_cb\n"); } void lo_error_update(RECEIVER *rx,long long offset) { -g_print("lo_error_update: band=%d\n",vfo[0].band); BAND *xvtr=band_get_band(vfo[0].band); if(dialog!=NULL) { char temp[32]; @@ -182,7 +179,6 @@ void xvtr_menu(GtkWidget *parent) { int i; char f[16]; -fprintf(stderr,"xvtr_menu\n"); parent_window=parent; dialog=gtk_dialog_new(); -- 2.45.2