PS Menu not shown when not protocol 1 or protocol 2.
i++;
#ifdef PURESIGNAL
- GtkWidget *ps_b=gtk_button_new_with_label("PS");
- g_signal_connect (ps_b, "button-press-event", G_CALLBACK(ps_cb), NULL);
- gtk_grid_attach(GTK_GRID(grid),ps_b,(i%5),i/5,1,1);
- i++;
+ if(protocol==ORIGINAL_PROTOCOL || protocol==NEW_PROTOCOL) {
+ GtkWidget *ps_b=gtk_button_new_with_label("PS");
+ g_signal_connect (ps_b, "button-press-event", G_CALLBACK(ps_cb), NULL);
+ gtk_grid_attach(GTK_GRID(grid),ps_b,(i%5),i/5,1,1);
+ i++;
+ }
#endif
GtkWidget *pa_b=gtk_button_new_with_label("PA");
}
if(rx->displaying) {
+ g_mutex_lock(&rx->display_mutex);
Spectrum0(1, rx->id, 0, 0, rx->iq_input_buffer);
+ g_mutex_unlock(&rx->display_mutex);
}
//g_print("full_rx_buffer: rx=%d buffer_size=%d samples=%d\n",rx->id,rx->buffer_size,rx->samples);
}
void receiver_change_zoom(RECEIVER *rx,double zoom) {
- g_mutex_lock(&rx->display_mutex);
if(rx->pixel_samples!=NULL) {
g_free(rx->pixel_samples);
}
rx->pixels=rx->width*(int)zoom;
rx->pixel_samples=g_new(float,rx->pixels);
rx->hz_per_pixel=(double)rx->sample_rate/(double)rx->pixels;
- if(zoom==0) {
+ rx->zoom=(int)zoom;
+ if(rx->zoom==1) {
rx->pan=0;
} else {
if(vfo[rx->id].ctun) {
rx->pan=(rx->pixels/2)-(rx->width/2);
}
}
- rx->zoom=(int)zoom;
init_analyzer(rx);
- g_mutex_unlock(&rx->display_mutex);
}
void receiver_change_pan(RECEIVER *rx,double pan) {
- g_mutex_lock(&rx->display_mutex);
- rx->pan=(int)pan;
- g_mutex_unlock(&rx->display_mutex);
+ if(rx->zoom>1) {
+ rx->pan=(int)pan;
+ }
}
/* Copyright (C)
-* 2015 - John Melton, G0ORX/N6LYT
+* 2020 - John Melton, G0ORX/N6LYT
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
*
*/
-//
-// DL1YCF:
-// uncomment the #define line following, then you will get
-// a "TX compression" slider with an enabling checkbox
-// in the bottom right of the sliders area, instead of the
-// sequelch slider and checkbox.
-// This option can also be passed to the compiler with "-D"
-// and thus be activated through the Makefile.
-//
-//#define COMPRESSION_SLIDER_INSTEAD_OF_SQUELCH 1
-//
-
#include <gtk/gtk.h>
#include <semaphore.h>
#include <stdio.h>
}
static void zoom_value_changed_cb(GtkWidget *widget, gpointer data) {
+ g_mutex_lock(&active_receiver->display_mutex);
receiver_change_zoom(active_receiver,gtk_range_get_value(GTK_RANGE(zoom_scale)));
gtk_range_set_range(GTK_RANGE(pan_scale),0.0,(double)(active_receiver->zoom==1?active_receiver->pixels:active_receiver->pixels-active_receiver->width));
gtk_range_set_value (GTK_RANGE(pan_scale),active_receiver->pan);
- if(active_receiver->zoom == 1) {
+ if(active_receiver->zoom==1) {
gtk_widget_set_sensitive(pan_scale, FALSE);
} else {
gtk_widget_set_sensitive(pan_scale, TRUE);
}
+ g_mutex_unlock(&active_receiver->display_mutex);
vfo_update();
}
}
void set_pan(int rx,double value) {
-g_print("set_pan: %f\n",value);
receiver[rx]->pan=(int)value;
if(display_zoompan) {
gtk_range_set_value (GTK_RANGE(pan_scale),receiver[rx]->pan);