2001-10-18 20:42:25 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Kenwood backend - TH-D7 description
|
2010-09-07 21:11:13 +00:00
|
|
|
* Copyright (c) 2000-2010 by Stephane Fillod
|
2001-10-18 20:42:25 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-10-01 19:32:04 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2001-10-18 20:42:25 +00:00
|
|
|
#include <hamlib/rig.h>
|
|
|
|
#include "kenwood.h"
|
2001-11-09 15:45:38 +00:00
|
|
|
#include "th.h"
|
2001-10-18 20:42:25 +00:00
|
|
|
|
2002-01-02 23:41:44 +00:00
|
|
|
#if 1
|
|
|
|
#define RIG_ASSERT(x) if (!(x)) { rig_debug(RIG_DEBUG_ERR, "Assertion failed on line %i\n",__LINE__); abort(); }
|
|
|
|
#else
|
|
|
|
#define RIG_ASSERT(x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define THD7_MODES (RIG_MODE_FM|RIG_MODE_AM)
|
2001-10-18 20:42:25 +00:00
|
|
|
#define THD7_MODES_TX (RIG_MODE_FM)
|
|
|
|
|
2002-01-07 17:46:28 +00:00
|
|
|
#define THD7_FUNC_ALL (RIG_FUNC_TSQL| \
|
|
|
|
RIG_FUNC_AIP| \
|
|
|
|
RIG_FUNC_MON| \
|
|
|
|
RIG_FUNC_SQL| \
|
|
|
|
RIG_FUNC_TONE| \
|
|
|
|
RIG_FUNC_REV| \
|
|
|
|
RIG_FUNC_LOCK| \
|
2003-03-24 23:08:28 +00:00
|
|
|
RIG_FUNC_ARO)
|
2002-01-07 17:46:28 +00:00
|
|
|
|
|
|
|
#define THD7_LEVEL_ALL (RIG_LEVEL_STRENGTH| \
|
|
|
|
RIG_LEVEL_SQL| \
|
|
|
|
RIG_LEVEL_AF| \
|
|
|
|
RIG_LEVEL_RF|\
|
|
|
|
RIG_LEVEL_MICGAIN)
|
2001-10-18 20:42:25 +00:00
|
|
|
|
2003-03-24 23:08:28 +00:00
|
|
|
#define THD7_PARMS (RIG_PARM_BACKLIGHT)
|
|
|
|
|
2001-10-18 20:42:25 +00:00
|
|
|
#define THD7_VFO_OP (RIG_OP_UP|RIG_OP_DOWN)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* TODO: Band A & B
|
|
|
|
*/
|
2002-01-07 17:46:28 +00:00
|
|
|
#define THD7_VFO (RIG_VFO_A|RIG_VFO_B)
|
|
|
|
|
2010-09-07 21:11:13 +00:00
|
|
|
static rmode_t td7_mode_table[KENWOOD_MODE_TABLE_MAX] = {
|
|
|
|
[0] = RIG_MODE_FM,
|
|
|
|
[1] = RIG_MODE_AM,
|
|
|
|
};
|
|
|
|
|
2009-01-28 23:30:59 +00:00
|
|
|
static struct kenwood_priv_caps thd7_priv_caps = {
|
2002-08-16 17:43:02 +00:00
|
|
|
.cmdtrm = EOM_TH, /* Command termination character */
|
2010-09-07 21:11:13 +00:00
|
|
|
.mode_table = td7_mode_table,
|
2002-01-07 17:46:28 +00:00
|
|
|
};
|
|
|
|
|
2001-10-18 20:42:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* th-d7a rig capabilities.
|
2010-09-13 21:27:21 +00:00
|
|
|
*
|
|
|
|
* http://www.qsl.net/ta1dx/kenwood/thd7kom.htm
|
2001-10-18 20:42:25 +00:00
|
|
|
*/
|
|
|
|
const struct rig_caps thd7a_caps = {
|
2002-08-16 17:43:02 +00:00
|
|
|
.rig_model = RIG_MODEL_THD7A,
|
|
|
|
.model_name = "TH-D7A",
|
|
|
|
.mfg_name = "Kenwood",
|
2005-04-03 20:23:19 +00:00
|
|
|
.version = TH_VER,
|
2002-08-16 17:43:02 +00:00
|
|
|
.copyright = "LGPL",
|
|
|
|
.status = RIG_STATUS_ALPHA,
|
|
|
|
.rig_type = RIG_TYPE_HANDHELD|RIG_FLAG_APRS|RIG_FLAG_TNC|RIG_FLAG_DXCLUSTER,
|
|
|
|
.ptt_type = RIG_PTT_RIG,
|
|
|
|
.dcd_type = RIG_DCD_RIG,
|
|
|
|
.port_type = RIG_PORT_SERIAL,
|
|
|
|
.serial_rate_min = 9600,
|
|
|
|
.serial_rate_max = 9600,
|
|
|
|
.serial_data_bits = 8,
|
|
|
|
.serial_stop_bits = 1,
|
|
|
|
.serial_parity = RIG_PARITY_NONE,
|
|
|
|
.serial_handshake = RIG_HANDSHAKE_NONE,
|
|
|
|
.write_delay = 0,
|
|
|
|
.post_write_delay = 0,
|
|
|
|
.timeout = 200,
|
|
|
|
.retry = 3,
|
|
|
|
|
|
|
|
.has_get_func = THD7_FUNC_ALL,
|
|
|
|
.has_set_func = THD7_FUNC_ALL,
|
|
|
|
.has_get_level = THD7_LEVEL_ALL,
|
|
|
|
.has_set_level = RIG_LEVEL_SET(THD7_LEVEL_ALL),
|
2003-03-24 23:08:28 +00:00
|
|
|
.has_get_parm = THD7_PARMS,
|
|
|
|
.has_set_parm = THD7_PARMS, /* FIXME: parms */
|
2004-03-21 18:25:54 +00:00
|
|
|
.level_gran = {
|
|
|
|
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
|
|
|
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
|
|
|
[LVL_RFPOWER] = { .min = { .i = 3 }, .max = { .i = 0 } },
|
|
|
|
},
|
2002-08-16 17:43:02 +00:00
|
|
|
.parm_gran = {},
|
|
|
|
.ctcss_list = kenwood38_ctcss_list,
|
|
|
|
.dcs_list = NULL,
|
|
|
|
.preamp = { RIG_DBLST_END, },
|
|
|
|
.attenuator = { RIG_DBLST_END, },
|
|
|
|
.max_rit = Hz(0),
|
|
|
|
.max_xit = Hz(0),
|
|
|
|
.max_ifshift = Hz(0),
|
|
|
|
.vfo_ops = THD7_VFO_OP,
|
|
|
|
.targetable_vfo = RIG_TARGETABLE_FREQ,
|
|
|
|
.transceive = RIG_TRN_RIG,
|
|
|
|
.bank_qty = 0,
|
2010-09-13 21:27:21 +00:00
|
|
|
.chan_desc_sz = 6,
|
2002-08-16 17:43:02 +00:00
|
|
|
|
2004-03-20 16:48:34 +00:00
|
|
|
.chan_list = {
|
|
|
|
{ 1, 199, RIG_MTYPE_MEM , {TH_CHANNEL_CAPS}}, /* normal MEM */
|
|
|
|
{ 200,219, RIG_MTYPE_EDGE , {TH_CHANNEL_CAPS}}, /* U/L MEM */
|
2008-05-04 21:23:26 +00:00
|
|
|
{ 221,222, RIG_MTYPE_CALL, {TH_CHANNEL_CAPS}}, /* Call 0/1 */
|
2004-03-20 16:48:34 +00:00
|
|
|
RIG_CHAN_END,
|
|
|
|
},
|
|
|
|
|
2002-08-16 17:43:02 +00:00
|
|
|
.rx_range_list1 = { RIG_FRNG_END, }, /* FIXME: enter region 1 setting */
|
|
|
|
.tx_range_list1 = { RIG_FRNG_END, },
|
|
|
|
.rx_range_list2 = {
|
2001-10-18 20:42:25 +00:00
|
|
|
{MHz(144),MHz(148),THD7_MODES,-1,-1,THD7_VFO},
|
|
|
|
{MHz(430),MHz(440),THD7_MODES,-1,-1,THD7_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* rx range */
|
2002-08-16 17:43:02 +00:00
|
|
|
.tx_range_list2 = {
|
2001-10-18 20:42:25 +00:00
|
|
|
{MHz(144),MHz(148),THD7_MODES_TX,W(5.5),W(5.5),THD7_VFO},
|
|
|
|
{MHz(430),MHz(440),THD7_MODES_TX,W(5.5),W(5.5),THD7_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* tx range */
|
2002-08-16 17:43:02 +00:00
|
|
|
.tuning_steps = {
|
2001-10-18 20:42:25 +00:00
|
|
|
{THD7_MODES,kHz(5)},
|
|
|
|
{THD7_MODES,kHz(6.25)},
|
|
|
|
{THD7_MODES,kHz(10)},
|
|
|
|
{THD7_MODES,kHz(12.5)},
|
|
|
|
{THD7_MODES,kHz(15)},
|
|
|
|
{THD7_MODES,kHz(20)},
|
|
|
|
{THD7_MODES,kHz(25)},
|
|
|
|
{THD7_MODES,kHz(30)},
|
|
|
|
{THD7_MODES,kHz(50)},
|
|
|
|
{THD7_MODES,kHz(100)},
|
|
|
|
RIG_TS_END,
|
|
|
|
},
|
|
|
|
/* mode/filter list, remember: order matters! */
|
2002-08-16 17:43:02 +00:00
|
|
|
.filters = {
|
2001-10-18 20:42:25 +00:00
|
|
|
{RIG_MODE_FM, kHz(14)},
|
|
|
|
{RIG_MODE_AM, kHz(9)},
|
|
|
|
RIG_FLT_END,
|
|
|
|
},
|
2002-08-16 17:43:02 +00:00
|
|
|
.priv = (void *)&thd7_priv_caps,
|
|
|
|
|
Several Kenwood patches from Alessandro Zummo, azummo-lists@towertech.it
Among the changes:
I finally had the time to build the CAT interface for my TS450 and
discovered a couple of new commands.
MX; MX0; MX1; is used to activate the AIP function
FL; FLXXXYYY; is used to set the filters.
I made a perl script to try every possible two-letters command. If
amyone is interested, at their own risk, just ask.
I've then modified and optimized the kenwood driver:
- moved MD_ defined to .h
- added init/cleanup
- ts450_get_mode -> kenwood_get_mode_if
- support reading memory channel freq within kenwood_get_freq
- added kenwood_safe_transaction as an helper with result len check
- added kenwood_get_if
- added get_level for RIG_LEVEL_CWPITCH
- set/get for RIG_FUNC_AIP
- replaced ts140/680 get_mode and get_freq
- removed the delay on the ts450. it works just fine without it.
=============================
the attached patch requires the first one I sent and
addresses a few remaining issues
- converted 8 spaces to tabs
- added kenwood_mode_table
- added kenwood_simple_transaction helper func
- use kenwood2rmode and rmode2kenwood where possible
- some code cleanup
- use kenwood_safe/simple_transaction where possible
- added kenwood_get_mem_if (ts140,ts450,ts680,ts690,ts850)
- added kenwood_get_channel (ts450,ts850)
- added FUNC_FINE_STEP (commented out, we have no more func slots)
- added LEVEL_CWPITCH (set)
- no reason to have ts850_set_func, ts850_set_level
- ... ts480_get/set_ant, ts480_set_func
- ... ts570_set/get_ant, ts570_get_channel, ts570_get_rit
- ... ts680_set_func
- ... ts790_get_mode, ts790_get_vfo
this patch is a bit more extensive and tested only on the TS450.
feedback will be appreciated.
where I removed code I took care to verify that the generic
code in kenwood.c worked in the same way.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2591 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-23 03:24:42 +00:00
|
|
|
.rig_init = kenwood_init,
|
|
|
|
.rig_cleanup = kenwood_cleanup,
|
2002-08-16 17:43:02 +00:00
|
|
|
.set_freq = th_set_freq,
|
|
|
|
.get_freq = th_get_freq,
|
|
|
|
.set_mode = th_set_mode,
|
|
|
|
.get_mode = th_get_mode,
|
|
|
|
.set_vfo = th_set_vfo,
|
|
|
|
.get_vfo = th_get_vfo,
|
|
|
|
.set_ctcss_tone = th_set_ctcss_tone,
|
|
|
|
.get_ctcss_tone = th_get_ctcss_tone,
|
2010-09-13 21:27:21 +00:00
|
|
|
.set_ctcss_sql = th_set_ctcss_sql,
|
|
|
|
.get_ctcss_sql = th_get_ctcss_sql,
|
2002-08-16 17:43:02 +00:00
|
|
|
.set_mem = th_set_mem,
|
|
|
|
.get_mem = th_get_mem,
|
2004-03-20 16:48:34 +00:00
|
|
|
.set_channel = th_set_channel,
|
|
|
|
.get_channel = th_get_channel,
|
2002-08-16 17:43:02 +00:00
|
|
|
.set_trn = th_set_trn,
|
|
|
|
.get_trn = th_get_trn,
|
|
|
|
|
|
|
|
.get_func = th_get_func,
|
|
|
|
.get_level = th_get_level,
|
2003-03-24 23:08:28 +00:00
|
|
|
.get_parm = th_get_parm,
|
2002-08-16 17:43:02 +00:00
|
|
|
.get_info = th_get_info,
|
|
|
|
|
2004-09-26 08:35:05 +00:00
|
|
|
.get_dcd = kenwood_get_dcd,
|
|
|
|
|
2002-08-16 17:43:02 +00:00
|
|
|
.decode_event = th_decode_event,
|
2001-10-18 20:42:25 +00:00
|
|
|
};
|
|
|
|
|
2002-01-02 23:41:44 +00:00
|
|
|
|
2002-01-07 17:46:28 +00:00
|
|
|
/* end of file */
|
2002-01-02 23:41:44 +00:00
|
|
|
|