Bug fix IF shift

main
PianetaRadio 2024-04-16 19:55:41 +02:00 zatwierdzone przez GitHub
rodzic f51d68fc0e
commit 8fa52c8273
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -5,6 +5,7 @@ CatRadio
1.4.1 - 2024-xx-xx
+ CW memory keyer
+ Check hamlib version on startup
* Bug fix: IF shift
1.4.0 - 2024-03-17
+ Auto Connect option

Wyświetl plik

@ -801,7 +801,7 @@ void RigDaemon::rigUpdate(RIG *my_rig)
//* IF Shift
if ((indexCmd == 17 && !rigGet.ptt && rigCom.fullPoll) || indexCmd == 0)
{
if (rig_has_get_level(my_rig, RIG_LEVEL_NR))
if (rig_has_get_level(my_rig, RIG_LEVEL_IF))
{
rig_get_level(my_rig, RIG_VFO_CURR, RIG_LEVEL_IF, &retvalue);
rigGet.ifShift = retvalue.i;