Remove split functions from XG6100 -- rig was rejecting the 0x0f 0x01 split on command so apparently it is not supported

https://github.com/Hamlib/Hamlib/issues/908
pull/910/head
Mike Black W9MDB 2021-12-28 22:42:55 -06:00
rodzic cab6ae80b5
commit 32a9903466
1 zmienionych plików z 8 dodań i 7 usunięć

Wyświetl plik

@ -331,7 +331,7 @@ const struct rig_caps x6100_caps =
RIG_MODEL(RIG_MODEL_X6100), RIG_MODEL(RIG_MODEL_X6100),
.model_name = "X6100", .model_name = "X6100",
.mfg_name = "Xeigu", .mfg_name = "Xeigu",
.version = BACKEND_VER ".0", .version = BACKEND_VER ".1",
.copyright = "LGPL", .copyright = "LGPL",
.status = RIG_STATUS_ALPHA, .status = RIG_STATUS_ALPHA,
.rig_type = RIG_TYPE_TRANSCEIVER, .rig_type = RIG_TYPE_TRANSCEIVER,
@ -491,12 +491,13 @@ const struct rig_caps x6100_caps =
.get_ctcss_sql = icom_get_ctcss_sql, .get_ctcss_sql = icom_get_ctcss_sql,
.set_dcs_code = icom_set_dcs_code, .set_dcs_code = icom_set_dcs_code,
.get_dcs_code = icom_get_dcs_code, .get_dcs_code = icom_get_dcs_code,
.set_split_freq = x108g_set_split_freq, // testing with X6100 showed it rejected the 0x0f 0x01 command
.get_split_freq = icom_get_split_freq, //.set_split_freq = x108g_set_split_freq,
.set_split_mode = x108g_set_split_mode, //.get_split_freq = icom_get_split_freq,
.get_split_mode = icom_get_split_mode, //.set_split_mode = x108g_set_split_mode,
.set_split_vfo = x108g_set_split_vfo, //.get_split_mode = icom_get_split_mode,
.get_split_vfo = NULL, //.set_split_vfo = x108g_set_split_vfo,
//.get_split_vfo = NULL,
}; };