From 999b6a2b4d8b5b7409b215a5cca2928fa67cebc3 Mon Sep 17 00:00:00 2001 From: Andreas Eversberg Date: Wed, 9 Aug 2017 16:59:10 +0200 Subject: UHD: Make frequency settings more tollerant (+-100 Hz are accepted) --- src/common/uhd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/uhd.c b/src/common/uhd.c index 45eab54..270acc1 100644 --- a/src/common/uhd.c +++ b/src/common/uhd.c @@ -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; -- cgit v1.2.3