From 6f884d02c2fe44357ef66f6e226f9d0f9df70e2e Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 8 May 2017 04:35:29 +0200 Subject: [PATCH] LimeSDR output: fixed send stream timeout (set to 1s) --- plugins/samplesink/limesdroutput/limesdroutputthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/samplesink/limesdroutput/limesdroutputthread.cpp b/plugins/samplesink/limesdroutput/limesdroutputthread.cpp index 1f242ec7d..0048bcd16 100644 --- a/plugins/samplesink/limesdroutput/limesdroutputthread.cpp +++ b/plugins/samplesink/limesdroutput/limesdroutputthread.cpp @@ -92,7 +92,7 @@ void LimeSDROutputThread::run() { callback(m_buf, LIMESDROUTPUT_BLOCKSIZE); - res = LMS_SendStream(m_stream, (void *) m_buf, LIMESDROUTPUT_BLOCKSIZE, &metadata, 1000); + res = LMS_SendStream(m_stream, (void *) m_buf, LIMESDROUTPUT_BLOCKSIZE, &metadata, 1000000); if (res < 0) {