Data mode support for the Icom IC-9100

Also enabled CAT PTT.

Also the rig supports querying split status so enabled that too.
This commit is contained in:
Bill Somerville 2014-10-22 00:18:00 +01:00
parent 69fd5d2596
commit 6416c7316b

View File

@ -109,7 +109,7 @@ const struct rig_caps ic9100_caps = {
.copyright = "LGPL",
.status = RIG_STATUS_UNTESTED,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.ptt_type = RIG_PTT_RIG,
.dcd_type = RIG_DCD_RIG,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 300,
@ -223,8 +223,8 @@ const struct rig_caps ic9100_caps = {
.get_freq = icom_get_freq,
.set_freq = icom_set_freq,
.get_mode = icom_get_mode,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode_with_data,
.set_mode = icom_set_mode_with_data,
.get_vfo = NULL,
.set_vfo = icom_set_vfo,
@ -262,6 +262,7 @@ const struct rig_caps ic9100_caps = {
.get_dcd = icom_get_dcd,
.decode_event = icom_decode_event,
.set_split_vfo = icom_set_split_vfo,
.get_split_vfo = icom_get_split_vfo,
.set_split_freq = icom_set_split_freq,
.get_split_freq = icom_get_split_freq,
.set_split_mode = icom_set_split_mode,