]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
consilidated manual merge
authorDL1YCF <dl1ycf@darc.de>
Thu, 21 May 2020 21:14:06 +0000 (23:14 +0200)
committerDL1YCF <dl1ycf@darc.de>
Thu, 21 May 2020 21:14:06 +0000 (23:14 +0200)
Makefile.mac
band.c
rigctl.c

index 6d6fdec71e92129efc5d4d9eab5160999d0e9b5f..54424fc2766c9f3a50290af5e07fff3a1486626a 100644 (file)
@@ -478,7 +478,7 @@ hpsdrsim:       hpsdrsim.o newhpsdrsim.o
 #############################################################################
 app:   $(OBJS) $(REMOTE_OBJS) $(USBOZY_OBJS) \
                $(LOCALCW_OBJS) \
-               $(PURESIGNAL_OBJS) $(MIDI_OBJS) $(STEMLAB_OBJS)
+               $(PURESIGNAL_OBJS) $(MIDI_OBJS) $(SOAPYSDR_OBJS) $(STEMLAB_OBJS)
        $(LINK) -headerpad_max_install_names -o $(PROGRAM) $(OBJS) $(REMOTE_OBJS) \
                $(USBOZY_OBJS)  \
                $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) \
@@ -493,22 +493,9 @@ app:       $(OBJS) $(REMOTE_OBJS) $(USBOZY_OBJS) \
        @cp MacOS/hpsdr.icns pihpsdr.app/Contents/Resources/hpsdr.icns
        @cp MacOS/pihpsdr.sh pihpsdr.app/Contents/MacOS/pihpsdr
        @cp MacOS/hpsdr.png pihpsdr.app/Contents/Resources
-       @for lib in `otool -L pihpsdr.app/Contents/MacOS/pihpsdr-bin | grep dylib | sed -e "s/ (.*//" | grep -Ev "/(usr/lib|System)" | grep -Ev /libg  | grep -Ev pango | grep -Ev cairo`; do \
-         libfn="`basename $$lib`"; \
-         cp "$$lib" "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-         chmod u+w "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-         install_name_tool -id "@executable_path/../Frameworks/$$libfn" "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-         install_name_tool -change "$$lib" "@executable_path/../Frameworks/$$libfn" pihpsdr.app/Contents/MacOS/pihpsdr-bin; \
-       done
-       @# once more to install libraries on which libs just copied depend (such as wdsp -> fftw)
-       @for file in pihpsdr.app/Contents/Frameworks/*.dylib; do \
-         for lib in `otool -L pihpsdr.app/Contents/Frameworks/*.dylib | grep -v pihpsdr.app | grep -v "executable_path" | grep dylib | sed -e "s/ (.*//" | grep -Ev "/(usr/lib|System)" | grep -Ev /libg  | grep -Ev pango | grep -Ev cairo`; do \
-           libfn="`basename $$lib`"; \
-           cp "$$lib" "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-           chmod u+w "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-           install_name_tool -id "@executable_path/../Frameworks/$$libfn" "pihpsdr.app/Contents/Frameworks/$$libfn"; \
-           install_name_tool -change "$$lib" "@executable_path/../Frameworks/$$libfn" $$file; \
-         done; \
-       done
+#
+#       Copying the libraries is too error-prone at the end
+#       So *do not do* that, instead the app will only work if the libraries are installed in the correct place
+#
 #############################################################################
 
diff --git a/band.c b/band.c
index 5ca08cf2fb6812f5320735e1ddddd50298add3c3..de1712ec1d8761bf4dbb946a081de241d4c7f1be 100644 (file)
--- a/band.c
+++ b/band.c
@@ -517,6 +517,7 @@ void bandRestoreState() {
        // The number of entries is a compile-time constant,
         // which changes when compiling piHPSDR with different
        // options (e.g. with and without SOAPYSDR)
+       // Therefore this number cannot be "restored" from a props file
 
         //sprintf(name,"band.%d.entries",b);
         //lue=getProperty(name);
index a0df83fecc40198e69751916b29d6d9be4522f31..3c36c37b95938201b74bf46430c047d87015788b 100644 (file)
--- a/rigctl.c
+++ b/rigctl.c
@@ -2147,6 +2147,7 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) {
             sprintf(reply,"ZZSP%d;",split);
             send_resp(client->fd,reply) ;
           } else if(command[5]==';') {
+           // use ext_set_split to take care of antenna switching
             split=atoi(&command[4]);
             tx_set_mode(transmitter,get_tx_mode());
             vfo_update();
@@ -2173,6 +2174,7 @@ gboolean parse_extended_cmd (char *command,CLIENT *client) {
             sprintf(reply,"ZZSW%d;",split);
             send_resp(client->fd,reply) ;
           } else if(command[5]==';') {
+           // use ext_set_split to take care of antenna switching
             split=atoi(&command[4]);
             tx_set_mode(transmitter,get_tx_mode());
             vfo_update();
@@ -2724,6 +2726,7 @@ int parse_cmd(void *data) {
             sprintf(reply,"FT%d;",split);
             send_resp(client->fd,reply) ;
           } else if(command[3]==';') {
+           // use ext_set_split to take care of antenna switching
             split=atoi(&command[2]);
             tx_set_mode(transmitter,get_tx_mode());
             vfo_update();
@@ -3135,7 +3138,10 @@ static gpointer serial_server(gpointer data) {
      int command_index=0;
      int numbytes;
      int i;
+     g_mutex_lock(&mutex_a->m);
      cat_control++;
+     if(rigctl_debug) g_print("RIGCTL: SER INC cat_contro=%d\n",cat_control);
+     g_mutex_unlock(&mutex_a->m);
      serial_running=TRUE;
      while(serial_running) {
        numbytes = read (fd, cmd_input, sizeof cmd_input);
@@ -3163,7 +3169,10 @@ static gpointer serial_server(gpointer data) {
        //usleep(100L);
      }
      close(client->fd);
+     g_mutex_lock(&mutex_a->m);
      cat_control--;
+     if(rigctl_debug) g_print("RIGCTL: SER DEC - cat_control=%d\n",cat_control);
+     g_mutex_unlock(&mutex_a->m);
      return NULL;
 }