]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Maintain cw_keyer_internal variable even if not compiled with LOCALCW
authorc vw <dl1ycf@darc.de>
Wed, 24 Feb 2021 14:25:34 +0000 (15:25 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 24 Feb 2021 14:25:34 +0000 (15:25 +0100)
cw_menu.c
radio.c

index bc00e21a36a42adde1a5b5c3f16e089574d8960b..335f66a431f62648cf53145bc9384b154ed6dd11 100644 (file)
--- a/cw_menu.c
+++ b/cw_menu.c
@@ -33,7 +33,9 @@
 #include "receiver.h"
 #include "new_protocol.h"
 #include "old_protocol.h"
+#ifdef LOCALCW
 #include "iambic.h"
+#endif
 #include "ext.h"
 
 static GtkWidget *parent_window=NULL;
@@ -276,13 +278,17 @@ void cw_menu(GtkWidget *parent) {
   gtk_grid_attach(GTK_GRID(grid),cw_keyer_weight_b,1,9,1,1);
   g_signal_connect(cw_keyer_weight_b,"value_changed",G_CALLBACK(cw_keyer_weight_value_changed_cb),NULL);
 
-#ifdef LOCALCW
+//
+// With the advent of MIDI keyers, this check-box is needed even if not compiled
+// with LOCALCW
+//
   GtkWidget *cw_keyer_internal_b=gtk_check_button_new_with_label("CW handled in Radio");
   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cw_keyer_internal_b), cw_keyer_internal);
   gtk_widget_show(cw_keyer_internal_b);
   gtk_grid_attach(GTK_GRID(grid),cw_keyer_internal_b,0,10,1,1);
   g_signal_connect(cw_keyer_internal_b,"toggled",G_CALLBACK(cw_keyer_internal_cb),NULL);
 
+#ifdef LOCALCW
   GtkWidget *cw_keyer_spacing_b=gtk_check_button_new_with_label("CW enforce letter spacing");
   gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (cw_keyer_spacing_b), cw_keyer_spacing);
   gtk_widget_show(cw_keyer_spacing_b);
diff --git a/radio.c b/radio.c
index b7090a6bc488045facd217e8b35df3a27d697dd7..501cb1cdf988f116bdf6ae273d012ffba912827b 100644 (file)
--- a/radio.c
+++ b/radio.c
@@ -1973,10 +1973,8 @@ g_print("radioRestoreState: %s\n",property_path);
     if(value) cw_keyer_weight=atoi(value);
     value=getProperty("cw_keyer_spacing");
     if(value) cw_keyer_spacing=atoi(value);
-#ifdef LOCALCW
     value=getProperty("cw_keyer_internal");
     if(value) cw_keyer_internal=atoi(value);
-#endif
     value=getProperty("cw_keyer_sidetone_volume");
     if(value) cw_keyer_sidetone_volume=atoi(value);
     value=getProperty("cw_keyer_ptt_delay");