pull/224/head
Michael Black 2020-03-31 15:31:47 -05:00
commit bcf08e2f99
2 zmienionych plików z 1 dodań i 6 usunięć

Wyświetl plik

@ -234,12 +234,9 @@ int ic10_get_vfo(RIG *rig, vfo_t *vfo)
int ic10_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo) int ic10_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t txvfo)
{ {
char ackbuf[64];
int ack_len;
rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__); rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__);
return ic10_transaction(rig, split == RIG_SPLIT_ON ? "SP1;" : "SP0;", 4, return ic10_transaction(rig, split == RIG_SPLIT_ON ? "SP1;" : "SP0;", 4,
ackbuf, &ack_len); NULL, 0);
} }

Wyświetl plik

@ -155,8 +155,6 @@ const struct rig_caps ts440_caps =
.get_freq = ic10_get_freq, .get_freq = ic10_get_freq,
.set_rit = kenwood_set_rit, .set_rit = kenwood_set_rit,
.get_rit = kenwood_get_rit, .get_rit = kenwood_get_rit,
.set_xit = kenwood_set_xit,
.get_xit = kenwood_get_xit,
.set_mode = kenwood_set_mode, .set_mode = kenwood_set_mode,
.get_mode = ic10_get_mode, .get_mode = ic10_get_mode,
.set_vfo = ic10_set_vfo, .set_vfo = ic10_set_vfo,