Releases: xmikos/simplesoapy
Releases · xmikos/simplesoapy
v1.5.1
v1.5.0
- use SoapySDR
getSampleRateRange()
method instead oflistSampleRates()
(if available) - set total center frequency of the chain instead of center frequency of
RF
tunable element (this allows e.g. setting center frequency < 30 MHz on LimeSDR) label
is now optional indetect_devices()
function (fixes brokendetect_devices()
on USRP)
v1.4.0
- specific fixes for RTL-SDR and SDRplay hardware quirks have been removed (fixed upstream), this also fixes problems with RTL-SDR on Windows
- new
list_stream_args()
method for listing stream arguments supported by device - new
get_gain_range()
andget_frequency_range()
methods - allow setting
buffer_size
andstream_args
in constructor andstream_timeout
instart_stream()
method - use SoapySDR
getBandwidthRange()
method instead of deprecatedlistBandwidths()
method, ourlist_bandwidths()
method now returns list of ranges instead of list of discrete bandwidths
v1.3.0
- allow getting and setting gain of specific amplification elements (
get_gain
andset_gain
methods), you can also pass dict with specific gains to constructor (e.g.gain={'LNA': 28, 'VGA': 12, 'AMP': 0}
) - listing, getting and setting SoapySDR device settings (
list_settings
,get_setting
andset_setting
methods), you can also pass dict with specific settings to constructor (e.g.settings={'biastee': 'true'}
) stream
andstream_timeout
are now public (it was_stream
and_stream_timeout
before)- all properties (like
freq
,sample_rate
, etc.) now returns actual values from device (not cached values)