[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 55253f704338ef5aebdb6
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-09-13 23:22:24
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via 55253f704338ef5aebdb694d79caabd0b092812f (commit) via 77f7f174adf4fa3eb4b5f32c9e5621efb4d64239 (commit) from 3a10a363dc8a4358ace228620a1e3cdc185f459e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 55253f704338ef5aebdb694d79caabd0b092812f Merge: 3a10a363d 77f7f174a Author: Nate Bargmann <n0...@n0...> Date: Sat Sep 13 18:14:06 2025 -0500 Merge GitHub PR #1910 commit 77f7f174adf4fa3eb4b5f32c9e5621efb4d64239 Author: David Balharrie <da...@ba...> Date: Sat Sep 13 17:15:36 2025 +0100 added voice mem to the following Yaesu Radios FT710, FT891, FTDX10, FTDX101, FTDX101MP diff --git a/rigs/yaesu/ft710.c b/rigs/yaesu/ft710.c index 12989b530..6489a5a27 100644 --- a/rigs/yaesu/ft710.c +++ b/rigs/yaesu/ft710.c @@ -185,6 +185,7 @@ struct rig_caps ft710_caps = .comp_meter_cal = FT710_COMP_CAL, .chan_list = { { 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, + { 1, 5, RIG_MTYPE_VOICE }, { 1, 5, RIG_MTYPE_MORSE }, RIG_CHAN_END, }, @@ -314,6 +315,7 @@ struct rig_caps ft710_caps = .set_clock = newcat_set_clock, .get_clock = newcat_get_clock, .scan = newcat_scan, + .send_voice_mem = newcat_send_voice_mem, .morse_qsize = 50, .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; diff --git a/rigs/yaesu/ft891.c b/rigs/yaesu/ft891.c index 9597f667a..a1bb095f5 100644 --- a/rigs/yaesu/ft891.c +++ b/rigs/yaesu/ft891.c @@ -194,6 +194,7 @@ struct rig_caps ft891_caps = .str_cal = FT891_STR_CAL, .chan_list = { { 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, + { 1, 5, RIG_MTYPE_VOICE }, { 1, 5, RIG_MTYPE_MORSE }, RIG_CHAN_END, }, @@ -338,6 +339,7 @@ struct rig_caps ft891_caps = .set_clock = newcat_set_clock, .get_clock = newcat_get_clock, .scan = newcat_scan, + .send_voice_mem = newcat_send_voice_mem, .morse_qsize = 50, .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; diff --git a/rigs/yaesu/ftdx10.c b/rigs/yaesu/ftdx10.c index c9f2b892e..4320565ae 100644 --- a/rigs/yaesu/ftdx10.c +++ b/rigs/yaesu/ftdx10.c @@ -198,6 +198,7 @@ struct rig_caps ftdx10_caps = .chan_list = { { 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, { 501, 510, RIG_MTYPE_BAND, NEWCAT_MEM_CAP }, /* 60M Channels, 5-01 - 5-10, if available */ + { 1, 5, RIG_MTYPE_VOICE }, { 1, 5, RIG_MTYPE_MORSE }, RIG_CHAN_END, }, @@ -327,6 +328,7 @@ struct rig_caps ftdx10_caps = .set_clock = newcat_set_clock, .get_clock = newcat_get_clock, .scan = newcat_scan, + .send_voice_mem = newcat_send_voice_mem, .morse_qsize = 50, .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; diff --git a/rigs/yaesu/ftdx101.c b/rigs/yaesu/ftdx101.c index 81f00b89a..c71a220f8 100644 --- a/rigs/yaesu/ftdx101.c +++ b/rigs/yaesu/ftdx101.c @@ -245,6 +245,7 @@ struct rig_caps ftdx101d_caps = { 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, { 100, 117, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, // P1L-P9U PMS channels { 501, 510, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, // 5xx 5 MHz band + { 1, 5, RIG_MTYPE_VOICE }, { 1, 5, RIG_MTYPE_MORSE }, RIG_CHAN_END, }, @@ -374,6 +375,7 @@ struct rig_caps ftdx101d_caps = .set_clock = newcat_set_clock, .get_clock = newcat_get_clock, .scan = newcat_scan, + .send_voice_mem = newcat_send_voice_mem, .morse_qsize = 50, .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; diff --git a/rigs/yaesu/ftdx101mp.c b/rigs/yaesu/ftdx101mp.c index d0fd514af..b6202e8a9 100644 --- a/rigs/yaesu/ftdx101mp.c +++ b/rigs/yaesu/ftdx101mp.c @@ -145,6 +145,7 @@ struct rig_caps ftdx101mp_caps = { 1, 99, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, { 100, 117, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, // P1L-P9U PMS channels { 501, 510, RIG_MTYPE_MEM, NEWCAT_MEM_CAP }, // 5xx 5 MHz band + { 1, 5, RIG_MTYPE_VOICE }, { 1, 5, RIG_MTYPE_MORSE }, RIG_CHAN_END, }, @@ -274,6 +275,7 @@ struct rig_caps ftdx101mp_caps = .set_clock = newcat_set_clock, .get_clock = newcat_get_clock, .scan = newcat_scan, + .send_voice_mem = newcat_send_voice_mem, .morse_qsize = 50, .hamlib_check_rig_caps = HAMLIB_CHECK_RIG_CAPS }; ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/ft710.c | 2 ++ rigs/yaesu/ft891.c | 2 ++ rigs/yaesu/ftdx10.c | 2 ++ rigs/yaesu/ftdx101.c | 2 ++ rigs/yaesu/ftdx101mp.c | 2 ++ 5 files changed, 10 insertions(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |