1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-23 08:28:36 -05:00

LimeSDR output: fixed send stream timeout (set to 1s)

This commit is contained in:
f4exb 2017-05-08 04:35:29 +02:00
parent b232a21e2c
commit 6f884d02c2

View File

@ -92,7 +92,7 @@ void LimeSDROutputThread::run()
{ {
callback(m_buf, LIMESDROUTPUT_BLOCKSIZE); 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) if (res < 0)
{ {