diff --git a/Readme.md b/Readme.md index 59bee9ce8..e7d4bfac0 100644 --- a/Readme.md +++ b/Readme.md @@ -270,9 +270,9 @@ Experimental and Linux only. Compile from source. Before starting SDRangel you have to add the library directory to the `LD_LIBRARY_PATH` variable for example with `export LD_LIBRARY_PATH=/opt/install/xtrx-images/lib:$LD_LIBRARY_PATH`. -⚠ Cold start with XTRX may not work (you will see error messages in the log) and you may need to stop and re-start SDRangel. +⚠ There are USB errors when first starting with XTRX after plugging it in. The only way to work around this is to restart SDRangel application. -⚠ It seems reception is not very stable particularly with sample rates lower than 5 MS/s. You may need to stop and restart the device (stop/start button) to recover. +⚠ Reception may stall sometimes particularly with sample rates lower than 5 MS/s and also after changes. You may need to stop and restart the device (stop/start button) to recover. ⚠ Right after (re)start you may need to move the main frequency dial back and forth if you notice that you are not on the right frequency. diff --git a/debian/changelog b/debian/changelog index 0eb63fff8..969235a21 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +sdrangel (4.4.1-1) unstable; urgency=medium + + * AirspyHF: Implemented new settings that come along newer version of libairspyhf + * Fixed many glitches in the REST API device settings handling + * SoapySDR: on preset load match on serial or driver id for SoapySDR devices + * SerialDV: corrected cmake find module and improved SerialDV support error messages + * Make the settings location appear in the log and in the about panel of the GUI also + * Temptative XTRX fixes + * REST API examples: Added a randomize channel colors utility as a way to answer to issue #275 + + -- Edouard Griffiths, F4EXB Wed, 02 Jan 2019 21:14:18 +0100 + sdrangel (4.4.0-1) unstable; urgency=medium * XTRX support diff --git a/plugins/samplesink/xtrxoutput/readme.md b/plugins/samplesink/xtrxoutput/readme.md index 06edc3a0f..d0800d2a2 100644 --- a/plugins/samplesink/xtrxoutput/readme.md +++ b/plugins/samplesink/xtrxoutput/readme.md @@ -8,6 +8,10 @@ This output sample sink plugin sends its samples to a [XTRX device](https://xtrx XTRX is a 2x2 MIMO device so it has two transmitting channels that can run concurrently. To activate the second channel when the first is already active just open a new sink tab in the main window (Devices -> Add sink device) and select the same LimeSDR device. +⚠ There are USB errors when first starting with XTRX after plugging it in. The only way to work around this is to restart SDRangel application. + +⚠ Right after (re)start you may need to move the main frequency dial back and forth if you notice that you are not on the right frequency. + ⚠ Simultaneous Tx and Rx is not supported. Dual Tx is not working either. ⚠ You need a hardware interpolation of at least 4 (default) diff --git a/plugins/samplesource/xtrxinput/readme.md b/plugins/samplesource/xtrxinput/readme.md index 6130c2340..76b8acdcf 100644 --- a/plugins/samplesource/xtrxinput/readme.md +++ b/plugins/samplesource/xtrxinput/readme.md @@ -8,7 +8,13 @@ This input sample source plugin gets its samples from a [XTRX device](https://xt XTRX is a 2x2 MIMO device so it has two receiving channels that can run concurrently. To activate the second channel when the first is already active just open a new source tab in the main window (Devices -> Add source device) and select the same LimeSDR device. You may need to change frequency back and forth in case reception is not working properly. -⚠ Sometimes XTRX does not start properly and the spectrum looks frozen. In such a case just stop and start the device again. +⚠ There are USB errors when first starting with XTRX after plugging it in. The only way to work around this is to restart SDRangel application. + +⚠ Reception may stall sometimes particularly with sample rates lower than 5 MS/s and also after changes. You may need to stop and restart the device (stop/start button) to recover. + +⚠ Right after (re)start you may need to move the main frequency dial back and forth if you notice that you are not on the right frequency. + +⚠ Simultaneous Rx and Tx is not supported. Dual Tx is not working either.

Build