Some more Kenwood rigs with no AI query

Hamlib-3.1
Bill Somerville 2016-05-21 15:17:06 +01:00
rodzic 72673e323f
commit 06dc9ca5d6
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -2582,7 +2582,11 @@ int kenwood_get_trn(RIG *rig, int *trn)
if (!rig || !trn) if (!rig || !trn)
return -RIG_EINVAL; return -RIG_EINVAL;
if (rig->caps->rig_model == RIG_MODEL_TS450S) { /* these rigs only have AI[0|1] set commands and no AI query */
if (rig->caps->rig_model == RIG_MODEL_TS450S
|| rig->caps->rig_model == RIG_MODEL_TS690S
|| rig->caps->rig_model == RIG_MODEL_TS850
|| rig->caps->rig_model == RIG_MODEL_TS950SDX) {
return -RIG_ENAVAIL; return -RIG_ENAVAIL;
} }