mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 13:47:01 -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:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user