# uncomment the line below to include MIDI support
MIDI_INCLUDE=MIDI
+# very early code not included yet
+#SERVER_INCLUDE=SERVER
+
# uncomment the line below for various debug facilities
#DEBUG_OPTION=-D DEBUG
STEMLAB_OBJS=stemlab_discovery.o
endif
+ifeq ($(SERVER_INCLUDE), SERVER)
+SERVER_OPTIONS=-D SERVER
+SERVER_SOURCES= \
+hpsdr_server.c
+SERVER_HEADERS= \
+hpsdr_server.h
+SERVER_OBJS= \
+hpsdr_server.o
+endif
+
GTKINCLUDES=`pkg-config --cflags gtk+-3.0`
GTKLIBS=`pkg-config --libs gtk+-3.0`
rigctl_menu.c \
toolbar.c \
transmitter.c \
+zoompan.c \
sliders.c \
version.c \
vfo.c \
rigctl_menu.h \
toolbar.h \
transmitter.h \
+zoompan.h \
sliders.h \
version.h \
vfo.h \
rigctl_menu.o \
toolbar.o \
transmitter.o \
+zoompan.o \
sliders.o \
vfo.o \
waterfall.o \
"stemlab_sdr_transceiver_hpsdr");
}
gtk_widget_show(apps_combobox[row]);
- gtk_grid_attach(GTK_GRID(grid), apps_combobox[row], 4, i, 1, 1);
+ gtk_grid_attach(GTK_GRID(grid), apps_combobox[row], 4, row, 1, 1);
}
}
#endif
case MIDI_KNOB:
g_idle_add(ext_pan_set,GINT_TO_POINTER(val));
break;
+ default:
+ // no action for keys (we should not come here anyway)
+ break;
}
break;
/////////////////////////////////////////////////////////// "PANHIGH"
g_print("MIDI_ZOOM: MIDI_KNOB: val=%d\n",val);
g_idle_add(ext_zoom_set,GINT_TO_POINTER(val));
break;
+ default:
+ // no action for keys (should not come here anyway)
+ break;
}
break;
/////////////////////////////////////////////////////////// "ZOOMDOWN"
#include "iambic.h"
#endif
#ifdef MIDI
-#include "midi.h"
+// rather than including MIDI.h with all its internal stuff
+// (e.g. enum components) we just declare the single bit thereof
+// we need here to make a strict compiler happy.
+void MIDIstartup();
#endif
#ifdef SERVER
#include "hpsdr_server.h"
SetInputSamplerate(rx->id, sample_rate);
SetEXTANBSamplerate (rx->id, sample_rate);
SetEXTNOBSamplerate (rx->id, sample_rate);
+#ifdef SOAPYSDR
if(protocol==SOAPYSDR_PROTOCOL) {
soapy_protocol_change_sample_rate(rx);
soapy_protocol_set_mic_sample_rate(rx->sample_rate);
}
+#endif
SetChannelState(rx->id,1,0);