2004-05-02 17:13:33 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Kenwood backend - R5000 description
|
|
|
|
* Copyright (c) 2000-2004 by Stephane Fillod
|
|
|
|
*
|
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
|
|
|
* $Id: r5000.c,v 1.4 2009-01-23 03:24:42 n0nb Exp $
|
2004-05-02 17:13:33 +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"
|
|
|
|
#include "ic10.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define R5000_ALL_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
|
|
|
|
|
2004-06-13 12:38:41 +00:00
|
|
|
#define R5000_FUNC_ALL (RIG_FUNC_LOCK)
|
2004-05-02 17:13:33 +00:00
|
|
|
|
|
|
|
#define R5000_LEVEL_ALL RIG_LEVEL_NONE
|
|
|
|
|
2004-06-13 12:38:41 +00:00
|
|
|
#define R5000_PARM_ALL (RIG_PARM_TIME)
|
|
|
|
|
|
|
|
#define R5000_VFO (RIG_VFO_A|RIG_VFO_B|RIG_VFO_MEM)
|
2004-05-02 17:13:33 +00:00
|
|
|
|
|
|
|
#define R5000_VFO_OPS (RIG_OP_UP|RIG_OP_DOWN)
|
2004-06-13 12:38:41 +00:00
|
|
|
|
2004-05-02 17:13:33 +00:00
|
|
|
#define R5000_SCAN_OPS (RIG_SCAN_VFO)
|
|
|
|
|
2004-06-13 12:38:41 +00:00
|
|
|
#define R5000_ANTS (RIG_ANT_1|RIG_ANT_2)
|
|
|
|
|
2004-05-02 17:13:33 +00:00
|
|
|
static const struct kenwood_priv_caps r5000_priv_caps = {
|
2004-06-13 12:38:41 +00:00
|
|
|
.cmdtrm = EOM_KEN,
|
|
|
|
.if_len = 33,
|
2004-05-02 17:13:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* R5000 rig capabilities, with IF-10 interface (like TS440).
|
|
|
|
*
|
|
|
|
* TODO: scan, get/set_channel, RIT
|
|
|
|
*/
|
|
|
|
const struct rig_caps r5000_caps = {
|
|
|
|
.rig_model = RIG_MODEL_R5000,
|
|
|
|
.model_name = "R-5000",
|
|
|
|
.mfg_name = "Kenwood",
|
2005-04-03 20:23:19 +00:00
|
|
|
.version = IC10_VER,
|
2004-05-02 17:13:33 +00:00
|
|
|
.copyright = "LGPL",
|
2004-06-13 12:38:41 +00:00
|
|
|
.status = RIG_STATUS_ALPHA,
|
2004-05-02 17:13:33 +00:00
|
|
|
.rig_type = RIG_TYPE_RECEIVER,
|
|
|
|
.ptt_type = RIG_PTT_NONE,
|
|
|
|
.dcd_type = RIG_DCD_NONE,
|
|
|
|
.port_type = RIG_PORT_SERIAL,
|
2004-06-13 12:38:41 +00:00
|
|
|
.serial_rate_min = 4800,
|
2004-05-02 17:13:33 +00:00
|
|
|
.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,
|
2004-06-13 12:38:41 +00:00
|
|
|
.post_write_delay = 2,
|
|
|
|
.timeout = 400,
|
2004-05-02 17:13:33 +00:00
|
|
|
.retry = 3,
|
|
|
|
|
2004-06-13 12:38:41 +00:00
|
|
|
.has_get_func = R5000_FUNC_ALL,
|
2004-05-02 17:13:33 +00:00
|
|
|
.has_set_func = R5000_FUNC_ALL,
|
|
|
|
.has_get_level = R5000_LEVEL_ALL,
|
|
|
|
.has_set_level = RIG_LEVEL_SET(R5000_LEVEL_ALL),
|
2004-06-13 12:38:41 +00:00
|
|
|
.has_get_parm = R5000_PARM_ALL,
|
|
|
|
.has_set_parm = RIG_PARM_SET(R5000_PARM_ALL),
|
2004-05-02 17:13:33 +00:00
|
|
|
.parm_gran = {},
|
|
|
|
.ctcss_list = NULL,
|
|
|
|
.dcs_list = NULL,
|
|
|
|
.preamp = { RIG_DBLST_END, },
|
|
|
|
.attenuator = { RIG_DBLST_END, },
|
2004-06-13 12:38:41 +00:00
|
|
|
.max_rit = Hz(0),
|
|
|
|
.max_xit = Hz(0),
|
2004-05-02 17:13:33 +00:00
|
|
|
.max_ifshift = Hz(0),
|
2004-06-13 12:38:41 +00:00
|
|
|
.targetable_vfo = RIG_TARGETABLE_FREQ,
|
2004-05-02 17:13:33 +00:00
|
|
|
.vfo_ops = R5000_VFO_OPS,
|
|
|
|
.scan_ops = R5000_SCAN_OPS,
|
|
|
|
.transceive = RIG_TRN_RIG,
|
|
|
|
.bank_qty = 0,
|
|
|
|
.chan_desc_sz = 0,
|
|
|
|
|
|
|
|
|
|
|
|
.chan_list = { { 0, 99, RIG_MTYPE_MEM, {IC10_CHANNEL_CAPS} }, /* TBC */
|
|
|
|
RIG_CHAN_END, },
|
|
|
|
|
|
|
|
.rx_range_list1 = {
|
|
|
|
{kHz(100),MHz(30),R5000_ALL_MODES,-1,-1,R5000_VFO},
|
|
|
|
{MHz(108),MHz(174),R5000_ALL_MODES,-1,-1,R5000_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* rx range */
|
|
|
|
.tx_range_list1 = { RIG_FRNG_END, },
|
|
|
|
.rx_range_list2 = {
|
|
|
|
{kHz(100),MHz(30),R5000_ALL_MODES,-1,-1,R5000_VFO},
|
|
|
|
{MHz(108),MHz(174),R5000_ALL_MODES,-1,-1,R5000_VFO},
|
|
|
|
RIG_FRNG_END,
|
|
|
|
}, /* rx range */
|
2004-06-13 12:38:41 +00:00
|
|
|
.tx_range_list2 = { RIG_FRNG_END, }, /* tx range */
|
2004-05-02 17:13:33 +00:00
|
|
|
|
|
|
|
.tuning_steps = {
|
|
|
|
{R5000_ALL_MODES,10},
|
|
|
|
RIG_TS_END,
|
|
|
|
},
|
|
|
|
/* mode/filter list, remember: order matters! */
|
|
|
|
.filters = {
|
|
|
|
{RIG_MODE_SSB|RIG_MODE_CW|RIG_MODE_RTTY, kHz(2.4)},
|
|
|
|
{RIG_MODE_AM, kHz(6)},
|
|
|
|
{RIG_MODE_FM, kHz(12)},
|
|
|
|
RIG_FLT_END,
|
|
|
|
},
|
|
|
|
.priv = (void *)&r5000_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,
|
2004-06-13 12:38:41 +00:00
|
|
|
.set_freq = ic10_set_freq,
|
2004-05-02 17:13:33 +00:00
|
|
|
.get_freq = ic10_get_freq,
|
2004-06-13 12:38:41 +00:00
|
|
|
.set_mode = ic10_set_mode,
|
2004-05-02 17:13:33 +00:00
|
|
|
.get_mode = ic10_get_mode,
|
|
|
|
.set_vfo = ic10_set_vfo,
|
|
|
|
.get_vfo = ic10_get_vfo,
|
2004-06-13 12:38:41 +00:00
|
|
|
.set_func = ic10_set_func,
|
|
|
|
.get_func = ic10_get_func,
|
|
|
|
.set_parm = ic10_set_parm,
|
|
|
|
.get_parm = ic10_get_parm,
|
|
|
|
.set_ant = ic10_set_ant,
|
|
|
|
.get_ant = ic10_get_ant,
|
|
|
|
.set_mem = ic10_set_mem,
|
2004-05-02 17:13:33 +00:00
|
|
|
.get_mem = ic10_get_mem,
|
2004-06-13 12:38:41 +00:00
|
|
|
.vfo_op = ic10_vfo_op,
|
|
|
|
.set_trn = ic10_set_trn,
|
|
|
|
.get_trn = ic10_get_trn,
|
|
|
|
.scan = ic10_scan,
|
|
|
|
.set_channel = ic10_set_channel,
|
|
|
|
.get_channel = ic10_get_channel,
|
|
|
|
.set_powerstat = ic10_set_powerstat,
|
|
|
|
.get_powerstat = ic10_get_powerstat,
|
|
|
|
.get_info = ic10_get_info,
|
2004-05-02 17:13:33 +00:00
|
|
|
.decode_event = ic10_decode_event,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Function definitions below
|
|
|
|
*/
|
|
|
|
|