mirror of
https://github.com/wf-group/wfview
synced 2026-08-13 17:32:59 -04:00
Fix all Icom rig files (atten) and hopefully improve m/s a/b
This commit is contained in:
parent
4b258f7c0b
commit
eabc13e1df
24 changed files with 2397 additions and 500 deletions
|
|
@ -66,7 +66,27 @@ void debugWindow::getCache()
|
|||
}
|
||||
if (ui->cacheView->rowCount() > c)
|
||||
ui->cacheView->model()->removeRows(c,ui->cacheView->rowCount());
|
||||
|
||||
queue->unlockMutex();
|
||||
|
||||
rigStateType state = queue->getState();
|
||||
QString vfoMode;
|
||||
|
||||
switch (state.vfoMode)
|
||||
{
|
||||
case vfoModeVfo:
|
||||
vfoMode = "VFO";
|
||||
break;
|
||||
case vfoModeMem:
|
||||
vfoMode = "MEM";
|
||||
break;
|
||||
case vfoModeSat:
|
||||
vfoMode = "SAT";
|
||||
break;
|
||||
}
|
||||
ui->vfo->setText(QString::number(state.vfo));
|
||||
ui->vfomode->setText(vfoMode);
|
||||
ui->receiver->setText(QString::number(state.receiver));
|
||||
}
|
||||
|
||||
void debugWindow::getQueue()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue