UHD: Make frequency settings more tollerant (+-100 Hz are accepted)

This commit is contained in:
Andreas Eversberg 2017-08-09 16:59:10 +02:00
parent 534411d660
commit 999b6a2b4d
1 changed files with 2 additions and 2 deletions

View File

@ -195,7 +195,7 @@ int uhd_open(size_t channel, const char *_device_args, const char *_stream_args,
uhd_close();
return -EIO;
}
if (fabs(got_frequency - tx_frequency) > 0.001) {
if (fabs(got_frequency - tx_frequency) > 100.0) {
PDEBUG(DUHD, DEBUG_ERROR, "Given TX frequency %.0f Hz is not supported, try %.0f Hz\n", tx_frequency, got_frequency);
uhd_close();
return -EINVAL;
@ -379,7 +379,7 @@ int uhd_open(size_t channel, const char *_device_args, const char *_stream_args,
uhd_close();
return -EIO;
}
if (fabs(got_frequency - rx_frequency) > 0.001) {
if (fabs(got_frequency - rx_frequency) > 100.0) {
PDEBUG(DUHD, DEBUG_ERROR, "Given RX frequency %.0f Hz is not supported, try %.0f Hz\n", rx_frequency, got_frequency);
uhd_close();
return -EINVAL;