1.4.0
PianetaRadio 2023-02-08 19:59:07 +01:00 zatwierdzone przez GitHub
rodzic 0689460b40
commit 8ee38b8b3a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 10 dodań i 2 usunięć

Wyświetl plik

@ -2,8 +2,10 @@ CatRadio
(+ New, * Updated, - Removed)
1.4.0 - 2022-mm-dd
1.4.0 - 2023-mm-dd
+ Meter peak indicator
+ Debug mode
* Power status improvement
* Bug fix: COM port list
* Updated to library Hamlib 4.5.4

Wyświetl plik

@ -730,7 +730,13 @@ void MainWindow::on_pushButton_Connect_toggled(bool checked)
guiInit();
connectMsg = "Connected to ";
connectMsg.append(my_rig->caps->model_name);
if (rigCap.onoff == 0 || rigGet.onoff == RIG_POWER_ON || rigGet.onoff == RIG_POWER_UNKNOWN) timer->start(rigCom.rigRefresh);
if (rigCap.onoff == 0 || rigGet.onoff == RIG_POWER_ON || rigGet.onoff == RIG_POWER_UNKNOWN)
{
freq_t retfreq;
retcode = rig_get_freq(my_rig, RIG_VFO_CURR, &retfreq); //double check if rig is on by getting the current frequency
if (retcode == RIG_OK) timer->start(rigCom.rigRefresh);
else rigGet.onoff = RIG_POWER_OFF;
}
}
}
else if (rigCom.connected) //Button unchecked