int FUNCTION_BUTTON;
#ifdef LOCALCW
-int CWL_BUTTON=14;
-int CWR_BUTTON=15;
-int SIDETONE_GPIO=8;
+//
+// WiringPi pins #12, 13, 14 are not used
+// by Controller1 and Controller2_V1
+// (and keep #8,9 reserved for I2C extensions)
+//
+int CWL_BUTTON=13;
+int CWR_BUTTON=14;
+int SIDETONE_GPIO=12;
int ENABLE_GPIO_SIDETONE=0;
int ENABLE_CW_BUTTONS=1;
int CW_ACTIVE_LOW=1;
}
if(controller==CONTROLLER2_V2) {
- // turn off as clash of use of pin 14 (WPi)
+ //
+ // In Controller2 V2, no 'free' GPIO pins
+ // are available, so one cannot use any of
+ // of these for CW in the standard setup
+ //
ENABLE_CW_BUTTONS=0;
+ ENABLE_GPIO_SIDETONE=0;
}
case DEVICE_STEMLAB:
// This is in principle the same as HERMES but has two ADCs
// (and therefore, can do DIVERSITY).
+ // There are some problems with the 6m band on the RedPitaya
+ // but with additional filtering it can be used.
strcpy(discovered[devices].name,"STEMlab");
discovered[devices].frequency_min=0.0;
- discovered[devices].frequency_max=30720000.0;
+ discovered[devices].frequency_max=61440000.0;
break;
default:
strcpy(discovered[devices].name,"Unknown");
void full_rx_buffer(RECEIVER *rx) {
int error;
+ g_mutex_lock(&rx->mutex);
// noise blanker works on original IQ samples
if(rx->nb) {
xanbEXT (rx->id, rx->iq_input_buffer, rx->iq_input_buffer);
//g_print("full_rx_buffer: rx=%d buffer_size=%d samples=%d\n",rx->id,rx->buffer_size,rx->samples);
process_rx_buffer(rx);
+ g_mutex_unlock(&rx->mutex);
}
static int rx_buffer_seen=0;