From 0b39d8d7d8f4c384afc5ac81572be4a8bd535b90 Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 19 May 2021 16:58:23 +0200 Subject: [PATCH] small corrections --- old_protocol.c | 4 ++-- receiver.c | 20 ++++++-------------- rx_panadapter.c | 4 ++-- 3 files changed, 10 insertions(+), 18 deletions(-) diff --git a/old_protocol.c b/old_protocol.c index 229f1a9..eece1fb 100644 --- a/old_protocol.c +++ b/old_protocol.c @@ -1703,9 +1703,9 @@ void ozy_send_buffer() { } else { // if diversity is enabled, use RX1 att value for RX2 if (diversity_enabled) { - output_buffer[C1]=0x20 | (adc[receiver[0]->adc].attenuation & 0x1F); + output_buffer[C1]=0x20 | (adc[0].attenuation & 0x1F); } else { - output_buffer[C1]=0x20 | (adc[receiver[1]->adc].attenuation & 0x1F); + output_buffer[C1]=0x20 | (adc[1].attenuation & 0x1F); } } } diff --git a/receiver.c b/receiver.c index 552aa82..28730bf 100644 --- a/receiver.c +++ b/receiver.c @@ -1217,13 +1217,6 @@ void receiver_change_adc(RECEIVER *rx,int adc) { void receiver_change_sample_rate(RECEIVER *rx,int sample_rate) { -// -// For the PS_RX_FEEDBACK receiver we have to change -// the number of pixels in the display (needed for -// conversion from higher sample rates to 48K such -// that the central part can be displayed in the TX panadapter -// - g_mutex_lock(&rx->mutex); rx->sample_rate=sample_rate; @@ -1242,13 +1235,12 @@ g_print("%s: id=%d rate=%d scale=%d buffer_size=%d output_samples=%d\n",__FUNCTI // feedback and must then return (rx->id is not a WDSP channel!) // if (rx->id == PS_RX_FEEDBACK && protocol == ORIGINAL_PROTOCOL) { - rx->pixels = 2* scale * rx->width; - g_free(rx->pixel_samples); - rx->pixel_samples=g_new(float,rx->pixels); - init_analyzer(rx); - g_print("%s: PS FEEDBACK: id=%d rate=%d buffer_size=%d output_samples=%d\n", - __FUNCTION__,rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples); - } + rx->pixels = 2* scale * rx->width; + g_free(rx->pixel_samples); + rx->pixel_samples=g_new(float,rx->pixels); + init_analyzer(rx); + g_print("%s: PS FEEDBACK: id=%d rate=%d buffer_size=%d output_samples=%d\n", + __FUNCTION__,rx->id, rx->sample_rate, rx->buffer_size, rx->output_samples); g_mutex_unlock(&rx->mutex); return; } diff --git a/rx_panadapter.c b/rx_panadapter.c index 12bacc5..dd13397 100644 --- a/rx_panadapter.c +++ b/rx_panadapter.c @@ -502,7 +502,7 @@ void rx_panadapter_update(RECEIVER *rx) { #ifdef SOAPYSDR if(protocol==SOAPYSDR_PROTOCOL) { //s1-=rx->rf_gain; - s1-=adc[rx->id].gain; + s1-=adc[rx->adc].gain; } #endif @@ -524,7 +524,7 @@ void rx_panadapter_update(RECEIVER *rx) { #ifdef SOAPYSDR if(protocol==SOAPYSDR_PROTOCOL) { //s2-=rx->rf_gain; - s2-=adc[rx->id].gain; + s2-=adc[rx->adc].gain; } #endif s2 = floor((rx->panadapter_high - s2) -- 2.45.2