1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-30 08:46:46 -04:00

SDRdaemon: use own timer for Windows build with optimized interval at 50ms

This commit is contained in:
Edouard Griffiths 2016-03-17 09:17:02 +01:00
parent 12ff4c2334
commit 335ecea84a

View File

@ -199,7 +199,7 @@ void SDRdaemonUDPHandler::connectTimer(const QTimer* timer)
#ifdef USE_INTERNAL_TIMER #ifdef USE_INTERNAL_TIMER
#warning "Uses internal timer" #warning "Uses internal timer"
m_timer = new QTimer(); m_timer = new QTimer();
m_timer->start(60); m_timer->start(50);
m_throttlems = m_timer->interval(); m_throttlems = m_timer->interval();
connect(m_timer, SIGNAL(timeout()), this, SLOT(tick())); connect(m_timer, SIGNAL(timeout()), this, SLOT(tick()));
#else #else