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

This commit is contained in:
Edouard Griffiths 2016-03-17 01:56:09 +01:00
parent 55f389cfb0
commit 12ff4c2334
1 changed files with 1 additions and 1 deletions

View File

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