1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

TestMOSync: updated threading model. Part of #1346

This commit is contained in:
f4exb
2022-10-09 13:06:14 +02:00
parent 0e236f8acc
commit 9e4fe95bba
4 changed files with 23 additions and 15 deletions
+3 -3
View File
@@ -23,7 +23,6 @@
#include <QString>
#include <QByteArray>
#include <QTimer>
#include <QThread>
#include "dsp/devicesamplemimo.h"
#include "dsp/spectrumvis.h"
@@ -32,6 +31,7 @@
class DeviceAPI;
class TestMOSyncWorker;
class BasebandSampleSink;
class QThread;
class TestMOSync : public DeviceSampleMIMO {
Q_OBJECT
@@ -153,8 +153,8 @@ private:
QMutex m_mutex;
SpectrumVis m_spectrumVis;
TestMOSyncSettings m_settings;
TestMOSyncWorker* m_sinkWorker;
QThread m_sinkWorkerThread;
TestMOSyncWorker *m_sinkWorker;
QThread *m_sinkWorkerThread;
QString m_deviceDescription;
bool m_runningTx;
const QTimer& m_masterTimer;