From d7918f0ff4e5e0ff66a69ab4d7f813553ccceabb Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 21 Dec 2016 21:47:56 +0100 Subject: [PATCH] Restore tx implementation roadmap --- Readme.md | 4 ++-- plugins/samplesink/filesink/filesinkthread.cpp | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Readme.md b/Readme.md index 8a7f12c07..400aa1275 100644 --- a/Readme.md +++ b/Readme.md @@ -41,8 +41,8 @@ Transmission or signal generation support for eligible devices (BladeRF and Hack - Phase 4a: version 2.4.0: FM modulator - Phase 4b: version 2.5.0: SSB modulator and CW keyer - Phase 4c: version 2.5.1: WFM modulator - - Phase 4d: version 2.5.2: limit to one channel plugin due to bug #11 - - phase 5: version 2.6.0: BladeRF and HackRF support including final interpolation stage. Degraded with only one channel plugin allowed due to bug #11 + - Phase 4d: version 2.5.2: Fix issue #11 or limit to a single channel plugin + - phase 5: version 3.0.0: BladeRF and HackRF support including final interpolation stage. Degraded with only one channel plugin allowed due to bug #11

Airspy

diff --git a/plugins/samplesink/filesink/filesinkthread.cpp b/plugins/samplesink/filesink/filesinkthread.cpp index 98655de9c..ece134a87 100644 --- a/plugins/samplesink/filesink/filesinkthread.cpp +++ b/plugins/samplesink/filesink/filesinkthread.cpp @@ -128,11 +128,11 @@ void FileSinkThread::tick() m_throttleToggle = !m_throttleToggle; } -// if (m_throttlems > m_maxThrottlems) -// { -// qDebug("FileSinkThread::tick: m_maxThrottlems: %d", m_maxThrottlems); -// m_maxThrottlems = m_throttlems; -// } + if (m_throttlems > m_maxThrottlems) + { + qDebug("FileSinkThread::tick: m_maxThrottlems: %d", m_maxThrottlems); + m_maxThrottlems = m_throttlems; + } SampleVector::iterator readUntil;