This commit is contained in:
Hexameron 2014-05-22 20:43:00 +01:00
parent d84f9a6da5
commit aaef1678ad
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ void RTLSDRThread::run()
m_startWaiter.wakeAll();
while(m_running) {
if((res = rtlsdr_read_async(m_dev, &RTLSDRThread::callbackHelper, this, 16, 2 * BLOCKSIZE)) < 0) {
if((res = rtlsdr_read_async(m_dev, &RTLSDRThread::callbackHelper, this, 32, BLOCKSIZE)) < 0) {
qCritical("RTLSDRThread: async error: %s", strerror(errno));
break;
}