LOCALCW_OBJS = iambic.o
endif
+ifeq ($(UNAME_S), Darwin)
+GPIO_INCLUDE=
+endif
+
ifeq ($(GPIO_INCLUDE),GPIO)
GPIO_OPTIONS=-D GPIO
GPIOD_VERSION=$(shell pkg-config --modversion libgpiod)
// Found matching entry
switch (desc->event) {
case MIDI_NOTE:
- if (desc->type == MIDI_KEY) {
- switch (desc->action) {
- case CW_LEFT:
- case CW_RIGHT:
- case CW_KEYER:
- case PTT:
- // deliver message for note-on and note-off
- DoTheMidi(desc->action, desc->type, val);
- break;
- default:
- // deliver only note-on messages
- if (val == 1) DoTheMidi(desc->action, desc->type, val);
- break;
- }
- }
+ DoTheMidi(desc->action, desc->type, val);
break;
case MIDI_CTRL:
if (desc->type == MIDI_KNOB) {
{
GtkWidget *restart_b=gtk_button_new_with_label("Restart");
g_signal_connect (restart_b, "button-press-event", G_CALLBACK(restart_cb), NULL);
- gtk_grid_attach(GTK_GRID(grid),restart_b,2,0,2,1);
+ gtk_grid_attach(GTK_GRID(grid),restart_b,2,0,1,1);
}
GtkWidget *exit_b=gtk_button_new_with_label("Exit piHPSDR");
g_signal_connect (exit_b, "button-press-event", G_CALLBACK(exit_cb), NULL);
- gtk_grid_attach(GTK_GRID(grid),exit_b,4,0,2,1);
+ gtk_grid_attach(GTK_GRID(grid),exit_b,3,0,2,1);
i=5;
protocol=radio->protocol;
device=radio->device;
- // init atlas_penelop flag
+ // init atlas_penelope flag
atlas_penelope = 0; // default: no penelope
if (protocol == ORIGINAL_PROTOCOL && device == DEVICE_METIS) {
//
iqswap=0;
+//
+// In most cases, ALEX is the best default choice for the filter board.
+// here we set filter_board to a different default value for some
+// "special" hardware. The choice made here only applies if the filter_board
+// is not specified in the props fil
+//
#ifdef SOAPYSDR
if(device==SOAPYSDR_USB_DEVICE) {
iqswap=1;
}
#endif
+ if ((protocol == ORIGINAL_PROTOCOL && device == DEVICE_HERMES_LITE2) ||
+ (protocol == NEW_PROTOCOL && device == NEW_DEVICE_HERMES_LITE2)) {
+ filter_board = N2ADR;
+ }
+
+ if (protocol == ORIGINAL_PROTOCOL && device == DEVICE_STEMLAB) {
+ filter_board = CHARLY25;
+ }
+
/*
adc_attenuation[0]=0;
adc_attenuation[1]=0;