}
static void rx_ant_cb(GtkToggleButton *widget, gpointer data) {
+ //
+ // Note this function is only called for the ORIGINAL and NEW protocol
+ //
if(gtk_toggle_button_get_active(widget)) {
int b=(GPOINTER_TO_UINT(data))>>4;
int ant=(GPOINTER_TO_UINT(data))&0xF;
}
static void adc0_antenna_cb(GtkComboBox *widget,gpointer data) {
+ //
+ // Note this function is only called for the SOAPYSDR protocol
+ //
ADC *adc=(ADC *)data;
adc->antenna=gtk_combo_box_get_active(widget);
if(radio->protocol==NEW_PROTOCOL) {
}
static void dac0_antenna_cb(GtkComboBox *widget,gpointer data) {
+ //
+ // Note this function is only called for the SOAPYSDR protocol
+ //
DAC *dac=(DAC *)data;
dac->antenna=gtk_combo_box_get_active(widget);
if(radio->protocol==NEW_PROTOCOL) {
}
static void tx_ant_cb(GtkToggleButton *widget, gpointer data) {
+ //
+ // Note this function is only called for the ORIGINAL and NEW protocol
+ //
if(gtk_toggle_button_get_active(widget)) {
int b=(GPOINTER_TO_UINT(data))>>4;
int ant=(GPOINTER_TO_UINT(data))&0xF;