}
static void diversity_cb(GtkWidget *widget, gpointer data) {
+ //
+ // If we have only one receiver, then changing diversity
+ // changes the number of HPSR receivers so we restart the
+ // original protocol
+ //
+ if (protocol == ORIGINAL_PROTOCOL && receivers == 1) {
+ old_protocol_stop();
+ }
diversity_enabled=diversity_enabled==1?0:1;
+ if (protocol == ORIGINAL_PROTOCOL && receivers == 1) {
+ old_protocol_run();
+ }
if (protocol == NEW_PROTOCOL) {
schedule_high_priority();
schedule_receive_specific();
#include "toolbar.h"
#include "transmitter.h"
#include "new_protocol.h"
+#include "old_protocol.h"
#include "vfo.h"
#include "ext.h"
}
static void enable_cb(GtkWidget *widget, gpointer data) {
+ //
+ // Enabling/Disabling changes the number of required
+ // of HPSR receivers so we restart the original protocol
+ //
+ if (protocol == ORIGINAL_PROTOCOL) {
+ old_protocol_stop();
+ }
g_idle_add(ext_tx_set_ps,GINT_TO_POINTER(gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))));
+ if (protocol == ORIGINAL_PROTOCOL) {
+ old_protocol_run();
+ }
}
static void auto_cb(GtkWidget *widget, gpointer data) {
// number of receivers has not changed.
if (receivers == r) return;
fprintf(stderr,"radio_change_receivers: from %d to %d\n",receivers,r);
+ //
+ // When changing the number of receivers, restart the
+ // old protocol
+ //
+ if (protocol == ORIGINAL_PROTOCOL) {
+ old_protocol_stop();
+ }
switch(r) {
case 1:
set_displaying(receiver[1],0);
if(protocol==NEW_PROTOCOL) {
schedule_high_priority();
}
+ if (protocol == ORIGINAL_PROTOCOL) {
+ old_protocol_run();
+ }
}
void radio_change_sample_rate(int rate) {