Kenwood TS-570 series IF returns current frequency

For Kenwood transceivers  the FA/FB/FC command smust be used  to get a
VFO  frequency,  the   IF  command  returns  the   Tx  frequency  when
transmitting. The function kenwood_get_freq_if() doesn't adjust for Tx
status or assign the frequency to a specific VFO.
Hamlib-3.0
Bill Somerville 2015-01-02 21:36:32 +00:00
rodzic b1e41d2d2c
commit 42af7ab657
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -823,7 +823,7 @@ const struct rig_caps ts570s_caps = {
.rig_init = kenwood_init, .rig_init = kenwood_init,
.rig_cleanup = kenwood_cleanup, .rig_cleanup = kenwood_cleanup,
.set_freq = kenwood_set_freq, .set_freq = kenwood_set_freq,
.get_freq = kenwood_get_freq_if, .get_freq = kenwood_get_freq,
.set_rit = ts570_set_rit, .set_rit = ts570_set_rit,
.get_rit = kenwood_get_rit, .get_rit = kenwood_get_rit,
.set_xit = ts570_set_xit, .set_xit = ts570_set_xit,
@ -1007,7 +1007,7 @@ const struct rig_caps ts570d_caps = {
.rig_init = kenwood_init, .rig_init = kenwood_init,
.rig_cleanup = kenwood_cleanup, .rig_cleanup = kenwood_cleanup,
.set_freq = kenwood_set_freq, .set_freq = kenwood_set_freq,
.get_freq = kenwood_get_freq_if, .get_freq = kenwood_get_freq,
.set_rit = ts570_set_rit, .set_rit = ts570_set_rit,
.get_rit = kenwood_get_rit, .get_rit = kenwood_get_rit,
.set_xit = ts570_set_xit, .set_xit = ts570_set_xit,