Remove get_freq -- seems to be causing a problem with FLRig

pull/518/head
Michael Black W9MDB 2021-01-19 12:12:24 -06:00
rodzic 0fe9b866d2
commit 1e96b1f4d7
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -991,10 +991,10 @@ int HAMLIB_API rig_open(RIG *rig)
} }
#endif #endif
// read frequence to update internal status // read frequency to update internal status
freq_t freq; // freq_t freq;
if (caps->get_freq) rig_get_freq(rig, RIG_VFO_A, &freq); // if (caps->get_freq) rig_get_freq(rig, RIG_VFO_A, &freq);
if (caps->get_freq) rig_get_freq(rig, RIG_VFO_B, &freq); // if (caps->get_freq) rig_get_freq(rig, RIG_VFO_B, &freq);
RETURNFUNC(RIG_OK); RETURNFUNC(RIG_OK);
} }