mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
LimeSDR: increased start/stop stream wait time to 50ms to fixed possible stability issues when changes are applied
This commit is contained in:
parent
be91456670
commit
b226c594df
1
debian/changelog
vendored
1
debian/changelog
vendored
@ -2,6 +2,7 @@ sdrangel (3.8.3-1) unstable; urgency=medium
|
|||||||
|
|
||||||
* ChannelAnalyzerNG: fixed GUI displays when channel sample rate changes
|
* ChannelAnalyzerNG: fixed GUI displays when channel sample rate changes
|
||||||
* SSB demod: fixed low cutoff channel marker display
|
* SSB demod: fixed low cutoff channel marker display
|
||||||
|
* LimeSDR: increased start/stop stream wait time to 50ms
|
||||||
|
|
||||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 12 Nov 2017 18:14:18 +0100
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 12 Nov 2017 18:14:18 +0100
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor LimeSDROutputPlugin::m_pluginDescriptor = {
|
||||||
QString("LimeSDR Output"),
|
QString("LimeSDR Output"),
|
||||||
QString("3.8.0"),
|
QString("3.8.3"),
|
||||||
QString("(c) Edouard Griffiths, F4EXB"),
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -41,7 +41,7 @@ void LimeSDROutputThread::startWork()
|
|||||||
if (LMS_StartStream(m_stream) < 0) {
|
if (LMS_StartStream(m_stream) < 0) {
|
||||||
qCritical("LimeSDROutputThread::startWork: could not start stream");
|
qCritical("LimeSDROutputThread::startWork: could not start stream");
|
||||||
} else {
|
} else {
|
||||||
usleep(1000);
|
usleep(50000);
|
||||||
qDebug("LimeSDROutputThread::startWork: stream started");
|
qDebug("LimeSDROutputThread::startWork: stream started");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ void LimeSDROutputThread::stopWork()
|
|||||||
if (LMS_StopStream(m_stream) < 0) {
|
if (LMS_StopStream(m_stream) < 0) {
|
||||||
qCritical("LimeSDROutputThread::stopWork: could not stop stream");
|
qCritical("LimeSDROutputThread::stopWork: could not stop stream");
|
||||||
} else {
|
} else {
|
||||||
usleep(1000);
|
usleep(50000);
|
||||||
qDebug("LimeSDROutputThread::stopWork: stream stopped");
|
qDebug("LimeSDROutputThread::stopWork: stream stopped");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor LimeSDRInputPlugin::m_pluginDescriptor = {
|
||||||
QString("LimeSDR Input"),
|
QString("LimeSDR Input"),
|
||||||
QString("3.8.0"),
|
QString("3.8.3"),
|
||||||
QString("(c) Edouard Griffiths, F4EXB"),
|
QString("(c) Edouard Griffiths, F4EXB"),
|
||||||
QString("https://github.com/f4exb/sdrangel"),
|
QString("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -42,7 +42,7 @@ void LimeSDRInputThread::startWork()
|
|||||||
if (LMS_StartStream(m_stream) < 0) {
|
if (LMS_StartStream(m_stream) < 0) {
|
||||||
qCritical("LimeSDRInputThread::startWork: could not start stream");
|
qCritical("LimeSDRInputThread::startWork: could not start stream");
|
||||||
} else {
|
} else {
|
||||||
usleep(1000);
|
usleep(50000);
|
||||||
qDebug("LimeSDRInputThread::startWork: stream started");
|
qDebug("LimeSDRInputThread::startWork: stream started");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ void LimeSDRInputThread::stopWork()
|
|||||||
if (LMS_StopStream(m_stream) < 0) {
|
if (LMS_StopStream(m_stream) < 0) {
|
||||||
qCritical("LimeSDRInputThread::stopWork: could not stop stream");
|
qCritical("LimeSDRInputThread::stopWork: could not stop stream");
|
||||||
} else {
|
} else {
|
||||||
usleep(1000);
|
usleep(50000);
|
||||||
qDebug("LimeSDRInputThread::stopWork: stream stopped");
|
qDebug("LimeSDRInputThread::stopWork: stream stopped");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user