Allowing the full range of sample rates for SDRPlay source.

This commit is contained in:
Marat Fayzullin 2024-02-06 17:37:08 -05:00
parent cd47863412
commit 857f1eb405
1 changed files with 13 additions and 10 deletions

View File

@ -114,14 +114,17 @@ class SdrplayDeviceDescription(SoapyConnectorDeviceDescription):
Range(768000),
Range(1000000),
Range(1536000),
Range(2000000),
Range(2048000),
Range(3000000),
Range(4000000),
Range(5000000),
Range(6000000),
Range(7000000),
Range(8000000),
Range(9000000),
Range(10000000),
# SoapySDRPlay3 will take any of the frequencies in this range,
# and SDRPlay hardware actually supports the whole range.
Range(2000000, 10000000),
# Range(2000000),
# Range(2048000),
# Range(3000000),
# Range(4000000),
# Range(5000000),
# Range(6000000),
# Range(7000000),
# Range(8000000),
# Range(9000000),
# Range(10000000),
]