pthread_attr_t attr;
pthread_t thread;
- uint8_t reply[11] = { 0xef, 0xfe, 2, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, 32, 1 };
+ uint8_t reply[11] = { 0xef, 0xfe, 2, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff, 0, 1 };
uint8_t id[4] = { 0xef, 0xfe, 1, 6 };
uint32_t code;
if (active_thread || new_protocol_running()) {
reply[2] = 3;
}
+ reply[9]=31; // software version
reply[10] = OLDDEVICE;
+ if (OLDDEVICE == DEVICE_HERMES_LITE2) {
+ // use HL1 device ID and new software version
+ reply[9]=41;
+ reply[10]=DEVICE_HERMES_LITE;
+ }
memset(buffer, 0, 60);
memcpy(buffer, reply, 11);
// to an RX gain of -12 to +48 dB. However the front-end hardware
// determines which is the correct "zero level", that is, the gain
// which corresponds to full-amplitude IQ samples for a 0 dBm input.
- // Experimentally, we set this "zero level" to +16 dB that (that is,
- // a RxGain value of 28). So the "attenuation" is (28 -G) where G
+ // Experimentally, we set this "zero level" to +13 dB that (that is,
+ // a RxGain value of 25). So the "attenuation" is (25 -G) where G
// is the RXgain value.
// NOTE: according to the AD9866 data sheet, this "calibration value"
- // should be 22 instead of 28, while a value of 31 is used
+ // should be 22 instead of 25, while a value of 31 is used
// by the HermesLite firmware when bit6 is not set.
//
- chk_data(28 -(frame[4] & 0x3F) , rx_att[0], "RX1 HL ATT/GAIN");
+ chk_data(25 -(frame[4] & 0x3F) , rx_att[0], "RX1 HL ATT/GAIN");
} else {
chk_data((frame[4] & 0x1F) >> 0, rx_att[0], "RX1 ATT");
chk_data((frame[4] & 0x20) >> 5, rx1_attE, "RX1 ATT enable");
if(devices<MAX_DEVICES) {
discovered[devices].protocol=ORIGINAL_PROTOCOL;
discovered[devices].device=buffer[10]&0xFF;
+ discovered[devices].software_version=buffer[9]&0xFF;
switch(discovered[devices].device) {
case DEVICE_METIS:
strcpy(discovered[devices].name,"Metis");
discovered[devices].frequency_max=61440000.0;
break;
case DEVICE_HERMES_LITE:
- // could also be a RadioBerry disguising itself as HermesLite
- strcpy(discovered[devices].name,"Hermes Lite");
+ //
+ // It seems that some HermesLite V2 boards use
+ // DEVICE_HERMES_LITE as the ID and a software version
+ // that is larger or equal to 40, while the original
+ // (V1) HermesLite boards have software versions up to 31.
+ // Therefore this is possibly a HL2 board!
+ if (discovered[devices].software_version < 40) {
+ strcpy(discovered[devices].name,"HermesLite V1");
+ } else {
+ strcpy(discovered[devices].name,"HermesLite V2");
+ discovered[devices].device = DEVICE_HERMES_LITE2;
+ }
discovered[devices].frequency_min=0.0;
discovered[devices].frequency_max=30720000.0;
break;
case DEVICE_HERMES_LITE2:
- strcpy(discovered[devices].name,"Hermes Lite 2");
+ strcpy(discovered[devices].name,"HermesLite V2");
discovered[devices].frequency_min=0.0;
discovered[devices].frequency_max=30720000.0;
break;
break;
}
g_print("old_discovery: name=%s min=%f max=%f\n",discovered[devices].name, discovered[devices].frequency_min, discovered[devices].frequency_max);
- discovered[devices].software_version=buffer[9]&0xFF;
for(i=0;i<6;i++) {
discovered[devices].info.network.mac_address[i]=buffer[i+3];
}
if(active_receiver->random) {
output_buffer[C3]|=LT2208_RANDOM_ON;
}
+ if(active_receiver->dither) {
+ output_buffer[C3]|=LT2208_DITHER_ON;
+ }
+#ifdef RADIOBERRY
//
// RadioBerry seems to encode the RXgain different from HERMES_LITE:
// the dither bit is hi-jacked for bit5 of RXgain
+ //
if (have_rx_gain) {
-#ifdef RADIOBERRY
- // adc_attenuation is in the range 28 ... -32 and maps to 0 ... 60
- if (adc_attenuation[active_receiver->adc] > 3) { // RxGain > 31
- output_buffer[C3]|=LT2208_DITHER_OFF;
- } else {
- output_buffer[C3]|=LT2208_DITHER_ON;
- }
-#endif
- } else {
- if(active_receiver->dither) {
+ output_buffer[C3] &= ~LT2208_DITHER_ON; // clear dither bit if if was set
+ int rxgain = rx_gain_calibration - adc_attenuation[active_receiver->adc];
+ if (rxgain < 0) rxgain=0;
+ if (rxgain > 60) rxgain=60;
+ if (rxgain > 31) {
output_buffer[C3]|=LT2208_DITHER_ON;
}
}
+#endif
if (filter_board == CHARLY25 && active_receiver->preamp) {
output_buffer[C3]|=LT2208_GAIN_ON;
}
// to behave differently and stores bit5 of the gain in the
// dither bit (see above) and a 5-bit attenuation value here.
//
+ int rxgain = rx_gain_calibration - adc_attenuation[active_receiver->adc];
+ if (rxgain < 0) rxgain=0;
+ if (rxgain > 60) rxgain=60;
#ifdef RADIOBERRY
- // adc_attenuation is in the range 28 ... -32
- int att = 28 + adc_attenuationctive_receiver->adc]; // RxGain: 0 ... 60
- if (att < 0) att=0;
- if (att > 60) att=60;
- if (att > 31) att -= 32; // high bit set above in dither
+ // encode lower 5 bits of RXgain
if (isTransmitting()) {
output_buffer[C4]=0x20 | (transmitter->attenuation & 0x1F);
} else {
- output_buffer[C4]=0x20|att;
+ output_buffer[C4]=0x20 | (rxgain & 0x1F);
}
#else
- int att = 28 - adc_attenuation[active_receiver->adc];
- if (att < 0) att=0;
- if (att > 60) att=60;
+ // encode all 6 bits of RXgain in ATT value and set bit6
if (isTransmitting()) {
output_buffer[C4] = 0x40 | (31 - (transmitter->attenuation & 0x1F));
} else {
- output_buffer[C4] = 0x40 | att;
+ output_buffer[C4] = 0x40 | (rxgain & 0x3F);
}
#endif
} else {
int memory_tune=0;
int full_tune=0;
int have_rx_gain=0;
+int rx_gain_calibration=25;
//long long displayFrequency=14250000;
//long long ddsFrequency=14250000;
case DEVICE_HERMES_LITE:
case DEVICE_HERMES_LITE2:
have_rx_gain=1;
+ rx_gain_calibration=25;
break;
default:
have_rx_gain=0;
+ rx_gain_calibration=0;
break;
}
break;
extern int can_transmit;
extern int have_rx_gain; // TRUE on HermesLite/RadioBerry
+extern int rx_gain_calibration; // position of the RX gain slider that
+ // corresponds to zero amplification/attenuation
extern void radio_stop();
extern void reconfigure_radio();
//from 0 - 48 db; the rx-gain slider functions as a gain slider with att = 0;
//att set to 20 for good power measurement.
int rx_gain_slider_value = (int)gtk_range_get_value(GTK_RANGE(attenuation_scale));
- adc_attenuation[active_receiver->adc]= 28 - rx_gain_slider_value;
+ adc_attenuation[active_receiver->adc]= rx_gain_calibration - rx_gain_slider_value;
set_attenuation(adc_attenuation[active_receiver->adc]);
} else {
adc_attenuation[active_receiver->adc]=(int)gtk_range_get_value(GTK_RANGE(attenuation_scale));
adc_attenuation[active_receiver->adc]=(int)value;
if(display_sliders) {
if (have_rx_gain) {
- gtk_range_set_value (GTK_RANGE(attenuation_scale),(double)(28-adc_attenuation[active_receiver->adc]));
+ gtk_range_set_value (GTK_RANGE(attenuation_scale),(double)(rx_gain_calibration-adc_attenuation[active_receiver->adc]));
} else {
gtk_range_set_value (GTK_RANGE(attenuation_scale),(double)adc_attenuation[active_receiver->adc]);
}
if (have_rx_gain) {
attenuation_scale=gtk_scale_new_with_range(GTK_ORIENTATION_HORIZONTAL,0.0, 60.0, 1.0);
- gtk_range_set_value (GTK_RANGE(attenuation_scale),28-adc_attenuation[active_receiver->adc]);
+ gtk_range_set_value (GTK_RANGE(attenuation_scale),rx_gain_calibration-adc_attenuation[active_receiver->adc]);
} else {
attenuation_scale=gtk_scale_new_with_range(GTK_ORIENTATION_HORIZONTAL,0.0, 31.0, 1.0);
gtk_range_set_value (GTK_RANGE(attenuation_scale),adc_attenuation[active_receiver->adc]);