Added send_morse and civ_version to ic7100/ic7600

This commit is contained in:
Michael Black W9MDB\n 2016-06-09 09:09:54 -05:00
parent d5b3c049af
commit 5e9961309f
2 changed files with 8 additions and 6 deletions

View File

@ -99,6 +99,7 @@ static const struct icom_priv_caps ic7100_priv_caps = {
0, /* 731 mode */
0, /* no XCHG */
ic7100_ts_sc_list, /* FIXME */
.civ_version = 1
};
const struct rig_caps ic7100_caps = {
@ -266,7 +267,7 @@ const struct rig_caps ic7100_caps = {
.get_split_freq = icom_get_split_freq,
.set_split_mode = icom_set_split_mode,
.get_split_mode = icom_get_split_mode,
.send_morse = icom_send_morse
};
/* end of file */

View File

@ -86,10 +86,11 @@
* TODO: complete command set (esp. the $1A bunch!) and testing..
*/
static const struct icom_priv_caps ic7600_priv_caps = {
0x7a, /* default address */
0, /* 731 mode */
0, /* no XCHG */
ic756pro_ts_sc_list
0x7a, /* default address */
0, /* 731 mode */
0, /* no XCHG */
ic756pro_ts_sc_list,
.civ_version = 1
};
@ -242,6 +243,6 @@ const struct rig_caps ic7600_caps = {
.get_split_mode = icom_get_split_mode,
.set_split_vfo = icom_set_split_vfo,
.get_split_vfo = icom_mem_get_split_vfo,
.send_morse = icom_send_morse
};