1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

LimeSDR: increased start/stop stream wait time to 50ms to fixed possible stability issues when changes are applied

This commit is contained in:
f4exb
2017-11-11 06:02:09 +01:00
parent be91456670
commit b226c594df
5 changed files with 7 additions and 6 deletions
@@ -42,7 +42,7 @@ void LimeSDRInputThread::startWork()
if (LMS_StartStream(m_stream) < 0) {
qCritical("LimeSDRInputThread::startWork: could not start stream");
} else {
usleep(1000);
usleep(50000);
qDebug("LimeSDRInputThread::startWork: stream started");
}
@@ -63,7 +63,7 @@ void LimeSDRInputThread::stopWork()
if (LMS_StopStream(m_stream) < 0) {
qCritical("LimeSDRInputThread::stopWork: could not stop stream");
} else {
usleep(1000);
usleep(50000);
qDebug("LimeSDRInputThread::stopWork: stream stopped");
}
}