From cd21f21a130debd6d88d0fd93c56f44ce8a031a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Mon, 13 Sep 2010 21:27:21 +0000 Subject: [PATCH] - add readl th_[sg]et_ctcss_sql() - enable channel description git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2980 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- kenwood/thd7.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kenwood/thd7.c b/kenwood/thd7.c index 939802810..1f0f5e655 100644 --- a/kenwood/thd7.c +++ b/kenwood/thd7.c @@ -76,6 +76,8 @@ static struct kenwood_priv_caps thd7_priv_caps = { /* * th-d7a rig capabilities. + * + * http://www.qsl.net/ta1dx/kenwood/thd7kom.htm */ const struct rig_caps thd7a_caps = { .rig_model = RIG_MODEL_THD7A, @@ -122,7 +124,7 @@ const struct rig_caps thd7a_caps = { .targetable_vfo = RIG_TARGETABLE_FREQ, .transceive = RIG_TRN_RIG, .bank_qty = 0, -.chan_desc_sz = 0, +.chan_desc_sz = 6, .chan_list = { { 1, 199, RIG_MTYPE_MEM , {TH_CHANNEL_CAPS}}, /* normal MEM */ @@ -174,6 +176,8 @@ const struct rig_caps thd7a_caps = { .get_vfo = th_get_vfo, .set_ctcss_tone = th_set_ctcss_tone, .get_ctcss_tone = th_get_ctcss_tone, +.set_ctcss_sql = th_set_ctcss_sql, +.get_ctcss_sql = th_get_ctcss_sql, .set_mem = th_set_mem, .get_mem = th_get_mem, .set_channel = th_set_channel,