Fix all Icom rig files (atten) and hopefully improve m/s a/b

This commit is contained in:
Phil Taylor 2025-01-21 10:05:52 +00:00
parent 4b258f7c0b
commit eabc13e1df
24 changed files with 2397 additions and 500 deletions

View file

@ -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()