From 320ba669f647d1dcda63a0ecb5002578b697ec3e Mon Sep 17 00:00:00 2001 From: "Dr. Johannes Pohl" Date: Sun, 27 Feb 2022 11:31:20 +0100 Subject: [PATCH] set BladeRF min sample rate to 520.834 kHz --- src/urh/dev/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/urh/dev/config.py b/src/urh/dev/config.py index 964060a08..c1f3efb6e 100644 --- a/src/urh/dev/config.py +++ b/src/urh/dev/config.py @@ -31,7 +31,7 @@ # http://www.nuand.com/bladeRF-brief.pdf DEVICE_CONFIG["BladeRF"] = { "center_freq": dev_range(start=47 * M, stop=6 * G, step=1), - "sample_rate": dev_range(start=2.5 * M, stop=61.44 * M, step=1), + "sample_rate": dev_range(start=520.834 * K, stop=61.44 * M, step=1), # https://github.com/jopohl/urh/issues/930 "bandwidth": dev_range(start=1.5 * M, stop=28 * M, step=1), "rx_channel": ["RX1", "RX2"], "tx_channel": ["TX1", "TX2"],