static int init(void *data) {
char wisdom_directory[1024];
+ int counter;
g_print("%s\n",__FUNCTION__);
//
char *c=getcwd(wisdom_directory, sizeof(wisdom_directory));
strcpy(&wisdom_directory[strlen(wisdom_directory)],"/");
- fprintf(stderr,"Securing wisdom file in directory: %s\n", wisdom_directory);
- status_text("Creating FFTW Wisdom file ...");
+ g_print("Securing wisdom file in directory: %s\n", wisdom_directory);
wisdom_running=1;
+ counter=0;
pthread_create(&wisdom_thread_id, NULL, wisdom_thread, wisdom_directory);
while (wisdom_running) {
+ if (counter++ < 10) {
+ status_text("Checking FFTW Wisdom file ...");
+ } else {
+ // if it takes longer than 1 sec, assume that WDSP
+ // is (re-) creating the wisdom file
+ status_text("Creating FFTW Wisdom file ...");
+ }
// wait for the wisdom thread to complete, meanwhile
// handling any GTK events.
usleep(100000); // 100ms
}
}
+ rxFrequency+=calibration;
+
phase=(long)((4294967296.0*(double)rxFrequency)/122880000.0);
high_priority_buffer_to_radio[ 9]=phase>>24;
high_priority_buffer_to_radio[10]=phase>>16;
}
}
+ rxFrequency+=calibration;
+
phase=(long)((4294967296.0*(double)rxFrequency)/122880000.0);
high_priority_buffer_to_radio[9+(ddc*4)]=phase>>24;
high_priority_buffer_to_radio[10+(ddc*4)]=phase>>16;
}
}
+ txFrequency+=calibration;
+
phase=(long)((4294967296.0*(double)txFrequency)/122880000.0);
if(isTransmitting() && transmitter->puresignal) {
g_mutex_lock(&audio_mutex);
if ((mic_ring_buffer == NULL) || (mic_ring_read_pt == mic_ring_write_pt)) {
// no buffer, or nothing in buffer: insert silence
+ //g_print("%s: no samples\n",__FUNCTION__);
sample=0.0;
} else {
newpt = mic_ring_read_pt+1;
static GtkWidget *waterfall;
static GtkWidget *audio_waterfall;
+// RX and TX calibration
+long long calibration=0LL;
+
/*
#ifdef GPIO
static GtkWidget *encoders;
value=getProperty("binaural");
if(value) binaural=atoi(value);
+ value=getProperty("calibration");
+ if(value) calibration=atoll(value);
+
value=getProperty("frequencyB");
- if(value) frequencyB=atol(value);
+ if(value) frequencyB=atoll(value);
value=getProperty("modeB");
if(value) modeB=atoi(value);
sprintf(value,"%d",binaural);
setProperty("binaural",value);
+ sprintf(value,"%lld",calibration);
+ setProperty("calibration",value);
+
sprintf(value,"%lld",frequencyB);
setProperty("frequencyB",value);
sprintf(value,"%d",modeB);
extern GtkWidget *fixed;
+extern long long calibration;
+
extern char property_path[];
#define NONE 0
*/
#endif
+static void calibration_value_changed_cb(GtkWidget *widget, gpointer data) {
+ calibration=(long long)gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
+}
+
static void rx_gain_calibration_value_changed_cb(GtkWidget *widget, gpointer data) {
rx_gain_calibration=gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
}
GtkWidget *content=gtk_dialog_get_content_area(GTK_DIALOG(dialog));
GtkWidget *grid=gtk_grid_new();
- gtk_grid_set_column_spacing (GTK_GRID(grid),10);
+ gtk_grid_set_column_spacing (GTK_GRID(grid),5);
gtk_grid_set_row_spacing (GTK_GRID(grid),5);
+ gtk_grid_set_column_homogeneous (GTK_GRID(grid), FALSE);
+ gtk_grid_set_row_homogeneous (GTK_GRID(grid), FALSE);
int col=0;
int row=0;
g_signal_connect(mute_rx_b,"toggled",G_CALLBACK(mute_rx_cb),NULL);
row++;
+ col=0;
+
+ GtkWidget *calibration_label=gtk_label_new(NULL);
+ gtk_label_set_markup(GTK_LABEL(calibration_label), "<b>Frequency\nCalibration(Hz):</b>");
+ gtk_grid_attach(GTK_GRID(grid),calibration_label,col,row,1,1);
+ col++;
+
+ GtkWidget *calibration_b=gtk_spin_button_new_with_range(-10000.0,10000.0,1.0);
+ gtk_spin_button_set_value(GTK_SPIN_BUTTON(calibration_b),(double)calibration);
+ gtk_grid_attach(GTK_GRID(grid),calibration_b,col,row,1,1);
+ g_signal_connect(calibration_b,"value_changed",G_CALLBACK(calibration_value_changed_cb),NULL);
if(have_rx_gain) {
- col=0;
+ col++;
GtkWidget *rx_gain_label=gtk_label_new(NULL);
gtk_label_set_markup(GTK_LABEL(rx_gain_label), "<b>RX Gain Calibration:</b>");
gtk_grid_attach(GTK_GRID(grid),rx_gain_label,col,row,1,1);
g_signal_connect(PA_enable_b,"toggled",G_CALLBACK(PA_enable_cb),NULL);
}
- row++;
}
+ row++;
if(row>temp_row) temp_row=row;
void vfo_rit_clear(int rx) {
vfo[receiver[rx]->id].rit=0;
+ vfo[receiver[rx]->id].rit_enabled=0;
receiver_frequency_changed(receiver[rx]);
g_idle_add(ext_vfo_update, NULL);
}
} else if(value>10000.0) {
value=10000.0;
}
- vfo[receiver[rx]->id].rit=(int)value;
+ vfo[receiver[rx]->id].rit=value;
+ vfo[receiver[rx]->id].rit_enabled=(value!=0);
receiver_frequency_changed(receiver[rx]);
g_idle_add(ext_vfo_update,NULL);
}