Make LimeSDR tune rx to tx frequency

This commit is contained in:
Andreas Eversberg 2018-05-19 08:55:12 +02:00
parent 32cefbbffc
commit 6ba1b8acab
1 changed files with 4 additions and 0 deletions

View File

@ -297,6 +297,10 @@ int soapy_open(size_t channel, const char *_device_args, const char *_stream_arg
}
}
/* hack to make limesdr tune rx to tx */
if (tx_frequency == rx_frequency)
rx_frequency += 1.0;
/* set frequency */
if (SoapySDRDevice_setFrequency(sdr, SOAPY_SDR_RX, channel, rx_frequency, &tune_args) != 0) {
PDEBUG(DSOAPY, DEBUG_ERROR, "Failed to set RX frequency to %.0f Hz\n", rx_frequency);