mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-23 00:18:37 -05:00
Merge pull request #1626 from srcejon/fix_testsource_timer
TestSource: Fix timing on Windows
This commit is contained in:
commit
02e6890381
@ -64,6 +64,7 @@ TestSourceWorker::TestSourceWorker(SampleSinkFifo* sampleFifo, QObject* parent)
|
|||||||
{
|
{
|
||||||
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()), Qt::QueuedConnection);
|
||||||
connect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
|
connect(&m_timer, SIGNAL(timeout()), this, SLOT(tick()));
|
||||||
|
m_timer.setTimerType(Qt::PreciseTimer);
|
||||||
m_timer.start(50);
|
m_timer.start(50);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -76,7 +77,6 @@ TestSourceWorker::~TestSourceWorker()
|
|||||||
void TestSourceWorker::startWork()
|
void TestSourceWorker::startWork()
|
||||||
{
|
{
|
||||||
qDebug("TestSourceWorker::startWork");
|
qDebug("TestSourceWorker::startWork");
|
||||||
m_timer.setTimerType(Qt::PreciseTimer);
|
|
||||||
m_running = true;
|
m_running = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user