Quick test, using Debug button as connect/disconnect

merge-requests/1/head
Phil Taylor 2021-02-07 09:56:11 +00:00
rodzic ab6192428f
commit cdb3d42d7e
2 zmienionych plików z 2268 dodań i 2 usunięć

Wyświetl plik

@ -2242,7 +2242,16 @@ void wfmain::on_debugBtn_clicked()
//emit getScopeMode();
//emit getScopeEdge(); // 1,2,3 only in "fixed" mode
//emit getScopeSpan(); // in khz, only in "center" mode
qDebug() << "Debug: finding rigs attached. Let's see if this works. ";
rig->findRigs();
//qDebug() << "Debug: finding rigs attached. Let's see if this works. ";
//rig->findRigs();
if (rigThread && rigThread->isRunning())
{
rigThread->quit();
rigThread->wait();
}
else
{
openRig();
}
}