2003-11-10 15:59:36 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Kenwood backend - TS-811 description
|
2004-05-02 17:17:31 +00:00
|
|
|
* Copyright (c) 2000-2004 by Stephane Fillod
|
2003-11-10 15:59:36 +00:00
|
|
|
*
|
2009-01-28 23:30:59 +00:00
|
|
|
* $Id: ts811.c,v 1.7 2009-01-28 23:30:59 azummo Exp $
|
2003-11-10 15:59:36 +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
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
#include "kenwood.h"
|
2004-05-02 17:17:31 +00:00
|
|
|
#include "ic10.h"
|
2003-11-10 15:59:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define TS811_ALL_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
|
|
|
|
|
|
|
|
/* func and levels to be checked */
|
|
|
|
#define TS811_FUNC_ALL (RIG_FUNC_TSQL|RIG_FUNC_LOCK|RIG_FUNC_MUTE)
|
|
|
|
|
|
|
|
#define TS811_LEVEL_ALL (RIG_LEVEL_STRENGTH)
|
|
|
|
|
|
|
|
#define TS811_VFO (RIG_VFO_A|RIG_VFO_B)
|
|
|
|
|
|
|
|
#define TS811_VFO_OP (RIG_OP_UP|RIG_OP_DOWN)
|
2004-05-02 17:17:31 +00:00
|
|
|
#define TS811_SCAN_OP (RIG_SCAN_VFO)
|
2003-11-10 15:59:36 +00:00
|
|
|
|
2009-01-28 23:30:59 +00:00
|
|
|
static struct kenwood_priv_caps ts811_priv_caps = {
|
2004-06-13 12:36:51 +00:00
|
|
|
.cmdtrm = EOM_KEN,
|
|
|
|
.if_len = 29,
|
2003-11-10 15:59:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ts811 rig capabilities.
|
|
|
|
*
|
|
|
|
* specs: http://www.qsl.net/sm7vhs/radio/kenwood/ts811/specs.htm
|
|
|
|
*
|
|
|
|
* TODO: protocol to be check with manual!
|
|
|
|
*/
|
|
|
|
const struct rig_caps ts811_caps = {
|
|
|
|
.rig_model = RIG_MODEL_TS811,
|
|
|
|
.model_name = "TS-811",
|
|
|
|
.mfg_name = "Kenwood",
|
2005-04-04 21:31:57 +00:00
|
|
|
.version = BACKEND_VER "." IC10_VER,
|
2003-11-10 15:59:36 +00:00
|
|
|
.copyright = "LGPL",
|
|
|
|
.status = RIG_STATUS_UNTESTED,
|
|
|
|
.rig_type = RIG_TYPE_TRANSCEIVER,
|
|
|
|
.ptt_type = RIG_PTT_RIG,
|
|
|
|
.dcd_type = RIG_DCD_RIG,
|
|
|
|
.port_type = RIG_PORT_SERIAL,
|
|
|
|
.serial_rate_min = 4800,
|
|
|
|
.serial_rate_max = 4800,
|
|
|
|
.serial_data_bits = 8,
|
|
|
|
.serial_stop_bits = 2,
|
|
|
|
.serial_parity = RIG_PARITY_NONE,
|
|
|
|
.serial_handshake = RIG_HANDSHAKE_HARDWARE,
|
|
|
|
.write_delay = 0,
|
|
|
|
.post_write_delay = 0,
|
|
|
|
.timeout = 1000,
|
|
|
|
.retry = 3,
|
|
|
|
|
|
|
|
.has_get_func = TS811_FUNC_ALL,
|
|
|
|
.has_set_func = TS811_FUNC_ALL,
|
|
|
|
.has_get_level = TS811_LEVEL_ALL,
|
|
|
|
.has_set_level = RIG_LEVEL_SET(TS811_LEVEL_ALL),
|
|
|
|
.has_get_parm = RIG_PARM_NONE,
|
|
|
|
.has_set_parm = RIG_PARM_NONE,
|
|
|
|
.level_gran = {}, /* FIXME: granularity */
|
|
|
|
.parm_gran = {},
|
|
|
|
.vfo_ops = TS811_VFO_OP,
|
2004-05-02 17:17:31 +00:00
|
|
|
.scan_ops = TS811_SCAN_OP,
|
2003-11-10 15:59:36 +00:00
|
|
|
.ctcss_list = kenwood38_ctcss_list,
|
|
|
|
.preamp = { RIG_DBLST_END, },
|
|
|
|
.attenuator = { RIG_DBLST_END, },
|
|
|
|
.max_rit = kHz(9.9),
|
|
|
|
.max_xit = 0,
|
|
|
|
.max_ifshift = 0,
|
|
|
|
.targetable_vfo = RIG_TARGETABLE_FREQ,
|
|
|
|
.transceive = RIG_TRN_RIG,
|
|
|
|
.bank_qty = 0,
|
|
|
|
.chan_desc_sz = 0,
|
|
|
|
|
|
|
|
/* FIXME: split memories, call channel, etc. */
|
2004-05-02 17:17:31 +00:00
|
|
|
.chan_list = { { 1, 59, RIG_MTYPE_MEM, {IC10_CHANNEL_CAPS} },
|
2003-11-10 15:59:36 +00:00
|
|
|
RIG_CHAN_END,
|
|
|
|
},
|
|
|
|
|
|
|
|
.rx_range_list1 = {
|
|
|
|
{MHz(430),MHz(440),TS811_ALL_MODES,-1,-1,TS811_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* rx range */
|
|
|
|
.tx_range_list1 = {
|
|
|
|
{MHz(430),MHz(440),TS811_ALL_MODES,W(5),W(25),TS811_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* tx range */
|
|
|
|
|
|
|
|
.rx_range_list2 = {
|
|
|
|
{MHz(430),MHz(450),TS811_ALL_MODES,-1,-1,TS811_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* rx range */
|
|
|
|
.tx_range_list2 = {
|
|
|
|
{MHz(430),MHz(450),TS811_ALL_MODES,W(5),W(25),TS811_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* tx range */
|
|
|
|
|
|
|
|
|
|
|
|
.tuning_steps = {
|
|
|
|
{TS811_ALL_MODES,50},
|
|
|
|
{TS811_ALL_MODES,100},
|
|
|
|
{TS811_ALL_MODES,kHz(1)},
|
|
|
|
{TS811_ALL_MODES,kHz(5)},
|
|
|
|
{TS811_ALL_MODES,kHz(9)},
|
|
|
|
{TS811_ALL_MODES,kHz(10)},
|
|
|
|
{TS811_ALL_MODES,12500},
|
|
|
|
{TS811_ALL_MODES,kHz(20)},
|
|
|
|
{TS811_ALL_MODES,kHz(25)},
|
|
|
|
{TS811_ALL_MODES,kHz(100)},
|
|
|
|
{TS811_ALL_MODES,MHz(1)},
|
|
|
|
{TS811_ALL_MODES,0}, /* any tuning step */
|
|
|
|
RIG_TS_END,
|
|
|
|
},
|
|
|
|
/* mode/filter list, remember: order matters! */
|
|
|
|
.filters = {
|
|
|
|
{RIG_MODE_SSB|RIG_MODE_CW, kHz(2.2)},
|
|
|
|
{RIG_MODE_FM, kHz(12)},
|
|
|
|
RIG_FLT_END,
|
|
|
|
},
|
|
|
|
.priv = (void *)&ts811_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,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_freq = kenwood_set_freq,
|
2004-05-02 17:17:31 +00:00
|
|
|
.get_freq = ic10_get_freq,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_rit = kenwood_set_rit,
|
|
|
|
.get_rit = kenwood_get_rit,
|
2004-05-02 17:17:31 +00:00
|
|
|
.set_xit = kenwood_set_xit,
|
|
|
|
.get_xit = kenwood_get_xit,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_mode = kenwood_set_mode,
|
2004-05-02 17:17:31 +00:00
|
|
|
.get_mode = ic10_get_mode,
|
|
|
|
.set_vfo = ic10_set_vfo,
|
|
|
|
.get_vfo = ic10_get_vfo,
|
|
|
|
.set_split_vfo = ic10_set_split_vfo,
|
|
|
|
.get_split_vfo = ic10_get_split_vfo,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_ptt = kenwood_set_ptt,
|
2004-05-02 17:17:31 +00:00
|
|
|
.get_ptt = ic10_get_ptt,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_func = kenwood_set_func,
|
|
|
|
.get_func = kenwood_get_func,
|
|
|
|
.vfo_op = kenwood_vfo_op,
|
|
|
|
.set_mem = kenwood_set_mem,
|
2004-05-02 17:17:31 +00:00
|
|
|
.get_mem = ic10_get_mem,
|
2003-11-10 15:59:36 +00:00
|
|
|
.set_trn = kenwood_set_trn,
|
2004-05-02 17:17:31 +00:00
|
|
|
.scan = kenwood_scan,
|
|
|
|
.set_ctcss_tone = kenwood_set_ctcss_tone,
|
|
|
|
.get_ctcss_tone = kenwood_get_ctcss_tone,
|
|
|
|
.set_level = kenwood_set_level,
|
|
|
|
.get_level = kenwood_get_level,
|
|
|
|
.set_channel = ic10_set_channel,
|
|
|
|
.get_channel = ic10_get_channel,
|
|
|
|
.decode_event = ic10_decode_event,
|
2003-11-10 15:59:36 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function definitions below
|
|
|
|
*/
|
|
|
|
|