From 5d3d099f3f5dc2a9f7b5e9c2b0d330202d0b0d8a Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 19 May 2021 14:46:59 +0200 Subject: [PATCH] Stream-lined "receiver change sample rate" for the PS_FEEDBACK receiver (this is only called in P1, and only used to set the parameters of the spectrum). --- receiver.c | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/receiver.c b/receiver.c index 96cdac1..552aa82 100644 --- a/receiver.c +++ b/receiver.c @@ -1232,16 +1232,17 @@ void receiver_change_sample_rate(RECEIVER *rx,int sample_rate) { rx->hz_per_pixel=(double)rx->sample_rate/(double)rx->width; g_print("%s: id=%d rate=%d scale=%d buffer_size=%d output_samples=%d\n",__FUNCTION__,rx->id,sample_rate,scale,rx->buffer_size,rx->output_samples); + #ifdef PURESIGNAL - if (rx->id == PS_RX_FEEDBACK) { - if (canTransmit) { - if (protocol == ORIGINAL_PROTOCOL) { - rx->pixels = 2* scale * rx->width; - } else { - // We should never arrive here, since the sample rate of the - // PS feedback receiver is fixed. - rx->pixels = 8 * rx->width; - } + // + // In the old protocol, the RX_FEEDBACK sample rate is tied + // to the radio's sample rate and therefore may vary. + // Since there is no downstream WDSP receiver her, the only thing + // we have to do here is to adapt the spectrum display of the + // 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); -- 2.45.2