2000-12-23 08:40:14 +00:00
|
|
|
/*
|
2001-07-13 19:08:15 +00:00
|
|
|
* Hamlib Kenwood backend - main header
|
2011-03-26 14:45:51 +00:00
|
|
|
* Copyright (c) 2000-2011 by Stephane Fillod
|
2013-01-18 11:50:01 +00:00
|
|
|
* Copyright (C) 2009,2010 Alessandro Zummo <a.zummo@towertech.it>
|
|
|
|
* Copyright (C) 2009,2010,2011,2012,2013 by Nate Bargmann, n0nb@n0nb.us
|
2000-12-23 08:40:14 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-21 02:20:21 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-07-13 19:08:15 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-21 02:20:21 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-12-23 08:40:14 +00:00
|
|
|
*
|
2011-08-21 02:20:21 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2001-07-13 19:08:15 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-21 02:20:21 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2000-12-23 08:40:14 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _KENWOOD_H
|
|
|
|
#define _KENWOOD_H 1
|
|
|
|
|
2010-04-24 13:50:24 +00:00
|
|
|
#include <string.h>
|
2009-02-06 14:15:12 +00:00
|
|
|
#include "token.h"
|
|
|
|
|
2018-12-23 22:41:10 +00:00
|
|
|
#define BACKEND_VER "1.1"
|
2005-04-03 20:23:19 +00:00
|
|
|
|
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
|
|
|
#define EOM_KEN ';'
|
|
|
|
#define EOM_TH '\r'
|
2002-03-13 23:42:43 +00:00
|
|
|
|
2015-03-13 12:37:29 +00:00
|
|
|
#define KENWOOD_MODE_TABLE_MAX 24
|
2018-03-15 07:33:01 +00:00
|
|
|
#define KENWOOD_MAX_BUF_LEN 128 /* max answer len, arbitrary */
|
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
|
|
|
|
2011-02-01 00:48:45 +00:00
|
|
|
|
|
|
|
/* Tokens for Parameters common to multiple rigs.
|
|
|
|
* Use token # >= 1 or <= 100. Defined here so they will be
|
|
|
|
* available in Kenwood name space.
|
|
|
|
*/
|
2014-12-24 00:36:40 +00:00
|
|
|
#define TOK_VOICE TOKEN_BACKEND(1)
|
|
|
|
#define TOK_FINE TOKEN_BACKEND(2)
|
|
|
|
#define TOK_XIT TOKEN_BACKEND(3)
|
|
|
|
#define TOK_RIT TOKEN_BACKEND(4)
|
2009-02-06 14:15:12 +00:00
|
|
|
|
2011-02-01 00:48:45 +00:00
|
|
|
/* Token structure assigned to .cfgparams in rig_caps */
|
|
|
|
extern const struct confparams kenwood_cfg_params[];
|
|
|
|
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* modes in use by the "MD" command
|
|
|
|
*/
|
|
|
|
#define MD_NONE '0'
|
|
|
|
#define MD_LSB '1'
|
|
|
|
#define MD_USB '2'
|
|
|
|
#define MD_CW '3'
|
|
|
|
#define MD_FM '4'
|
|
|
|
#define MD_AM '5'
|
|
|
|
#define MD_FSK '6'
|
|
|
|
#define MD_CWR '7'
|
|
|
|
#define MD_FSKR '9'
|
2008-05-04 21:19:07 +00:00
|
|
|
|
2002-01-07 17:51:52 +00:00
|
|
|
struct kenwood_priv_caps {
|
2014-12-24 00:36:40 +00:00
|
|
|
char cmdtrm; /* Command termination chars (ken=';' or th='\r') */
|
2015-02-12 17:57:15 +00:00
|
|
|
int if_len; /* length of IF; answer excluding ';' terminator */
|
2008-05-04 21:19:07 +00:00
|
|
|
rmode_t *mode_table;
|
2002-01-07 17:51:52 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
struct kenwood_priv_data {
|
2009-02-03 22:42:44 +00:00
|
|
|
char info[KENWOOD_MAX_BUF_LEN];
|
2014-12-24 00:36:40 +00:00
|
|
|
split_t split; /* current split state */
|
|
|
|
int k2_ext_lvl; /* Initial K2 extension level */
|
|
|
|
int k3_ext_lvl; /* Initial K3 extension level */
|
|
|
|
int k2_md_rtty; /* K2 RTTY mode available flag, 1 = RTTY, 0 = N/A */
|
|
|
|
char *fw_rev; /* firmware revision level */
|
2015-11-29 18:26:39 +00:00
|
|
|
int trn_state; /* AI state discovered at startup */
|
2014-12-24 00:36:40 +00:00
|
|
|
unsigned fw_rev_uint; /* firmware revison as a number 1.07 -> 107 */
|
2015-11-27 18:56:37 +00:00
|
|
|
char verify_cmd[4]; /* command used to verify set commands */
|
2017-08-02 22:31:24 +00:00
|
|
|
int is_emulation; /* flag for TS-2000 emulations */
|
2015-01-19 10:52:18 +00:00
|
|
|
void * data; /* model specific data */
|
2018-05-18 12:29:55 +00:00
|
|
|
rmode_t curr_mode; /* used for is_emulation to avoid get_mode on VFOB */
|
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
|
|
|
};
|
|
|
|
|
2013-07-25 03:48:07 +00:00
|
|
|
|
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
|
|
|
#define kenwood_caps(rig) ((struct kenwood_priv_caps *)(rig)->caps->priv)
|
|
|
|
|
|
|
|
|
|
|
|
extern rmode_t kenwood_mode_table[KENWOOD_MODE_TABLE_MAX];
|
2002-01-07 17:51:52 +00:00
|
|
|
|
2006-03-09 19:45:10 +00:00
|
|
|
extern const tone_t kenwood38_ctcss_list[];
|
2011-12-11 16:59:35 +00:00
|
|
|
extern const tone_t kenwood42_ctcss_list[];
|
2000-12-23 08:40:14 +00:00
|
|
|
|
2015-02-16 12:46:35 +00:00
|
|
|
int kenwood_transaction(RIG *rig, const char *cmd, char *data, size_t data_len);
|
2009-02-02 07:29:11 +00:00
|
|
|
int kenwood_safe_transaction(RIG *rig, const char *cmd, char *buf,
|
2014-12-24 00:36:40 +00:00
|
|
|
size_t buf_size, size_t expected);
|
2009-02-02 07:29:11 +00:00
|
|
|
|
2008-05-04 21:19:07 +00:00
|
|
|
rmode_t kenwood2rmode(unsigned char mode, const rmode_t mode_table[]);
|
|
|
|
char rmode2kenwood(rmode_t mode, const rmode_t mode_table[]);
|
|
|
|
|
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
|
|
|
int kenwood_init(RIG *rig);
|
|
|
|
int kenwood_cleanup(RIG *rig);
|
2009-02-03 22:42:44 +00:00
|
|
|
int kenwood_open(RIG *rig);
|
2015-11-29 18:26:39 +00:00
|
|
|
int kenwood_close(RIG *rig);
|
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
|
|
|
|
2001-05-15 22:05:26 +00:00
|
|
|
int kenwood_set_vfo(RIG *rig, vfo_t vfo);
|
2015-03-13 12:37:29 +00:00
|
|
|
int kenwood_set_vfo_main_sub(RIG *rig, vfo_t vfo);
|
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
|
|
|
int kenwood_get_vfo_if(RIG *rig, vfo_t *vfo);
|
2015-03-13 12:37:29 +00:00
|
|
|
int kenwood_get_vfo_main_sub(RIG *rig, vfo_t *vfo);
|
2014-01-30 13:09:30 +00:00
|
|
|
int kenwood_set_split(RIG *rig, vfo_t vfo , split_t split, vfo_t txvfo);
|
2004-02-14 16:50:54 +00:00
|
|
|
int kenwood_set_split_vfo(RIG *rig, vfo_t vfo , split_t split, vfo_t txvfo);
|
2009-01-29 22:54:41 +00:00
|
|
|
int kenwood_get_split_vfo_if(RIG *rig, vfo_t rxvfo, split_t *split, vfo_t *txvfo);
|
2004-05-02 17:17:31 +00:00
|
|
|
|
2000-12-23 08:40:14 +00:00
|
|
|
int kenwood_set_freq(RIG *rig, vfo_t vfo, freq_t freq);
|
|
|
|
int kenwood_get_freq(RIG *rig, vfo_t vfo, freq_t *freq);
|
2009-01-29 22:54:41 +00:00
|
|
|
int kenwood_get_freq_if(RIG *rig, vfo_t vfo, freq_t *freq);
|
2002-09-03 18:55:05 +00:00
|
|
|
int kenwood_set_rit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
|
|
|
int kenwood_get_rit(RIG *rig, vfo_t vfo, shortfreq_t * rit);
|
2002-09-04 17:32:42 +00:00
|
|
|
int kenwood_set_xit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
|
|
|
int kenwood_get_xit(RIG *rig, vfo_t vfo, shortfreq_t * rit);
|
2000-12-23 08:40:14 +00:00
|
|
|
int kenwood_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
|
|
|
|
int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
|
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
|
|
|
int kenwood_get_mode_if(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
|
2001-06-30 23:19:42 +00:00
|
|
|
int kenwood_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val);
|
2001-05-15 22:05:26 +00:00
|
|
|
int kenwood_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
|
2001-06-30 23:19:42 +00:00
|
|
|
int kenwood_set_func(RIG *rig, vfo_t vfo, setting_t func, int status);
|
|
|
|
int kenwood_get_func(RIG *rig, vfo_t vfo, setting_t func, int *status);
|
2009-02-06 14:15:12 +00:00
|
|
|
int kenwood_set_ext_parm(RIG *rig, token_t token, value_t val);
|
|
|
|
int kenwood_get_ext_parm(RIG *rig, token_t token, value_t *val);
|
2001-07-01 11:46:17 +00:00
|
|
|
int kenwood_set_ctcss_tone(RIG *rig, vfo_t vfo, tone_t tone);
|
2009-02-03 23:42:53 +00:00
|
|
|
int kenwood_set_ctcss_tone_tn(RIG *rig, vfo_t vfo, tone_t tone);
|
2001-07-01 11:46:17 +00:00
|
|
|
int kenwood_get_ctcss_tone(RIG *rig, vfo_t vfo, tone_t *tone);
|
2011-09-10 16:24:22 +00:00
|
|
|
int kenwood_set_ctcss_sql(RIG *rig, vfo_t vfo, tone_t tone);
|
|
|
|
int kenwood_get_ctcss_sql(RIG *rig, vfo_t vfo, tone_t *tone);
|
2001-05-15 22:05:26 +00:00
|
|
|
int kenwood_set_powerstat(RIG *rig, powerstat_t status);
|
|
|
|
int kenwood_get_powerstat(RIG *rig, powerstat_t *status);
|
|
|
|
int kenwood_reset(RIG *rig, reset_t reset);
|
|
|
|
int kenwood_send_morse(RIG *rig, vfo_t vfo, const char *msg);
|
2008-03-01 11:20:30 +00:00
|
|
|
int kenwood_set_ant (RIG * rig, vfo_t vfo, ant_t ant);
|
2009-02-02 07:30:35 +00:00
|
|
|
int kenwood_set_ant_no_ack(RIG * rig, vfo_t vfo, ant_t ant);
|
2008-03-01 11:20:30 +00:00
|
|
|
int kenwood_get_ant (RIG * rig, vfo_t vfo, ant_t * ant);
|
2002-02-18 18:26:08 +00:00
|
|
|
int kenwood_get_ptt(RIG *rig, vfo_t vfo, ptt_t *ptt);
|
2001-05-22 21:59:26 +00:00
|
|
|
int kenwood_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt);
|
2009-02-09 20:59:31 +00:00
|
|
|
int kenwood_set_ptt_safe(RIG *rig, vfo_t vfo, ptt_t ptt);
|
2001-05-22 21:59:26 +00:00
|
|
|
int kenwood_get_dcd(RIG *rig, vfo_t vfo, dcd_t *dcd);
|
2001-06-30 23:19:42 +00:00
|
|
|
int kenwood_vfo_op(RIG *rig, vfo_t vfo, vfo_op_t op);
|
|
|
|
int kenwood_set_mem(RIG *rig, vfo_t vfo, int ch);
|
|
|
|
int kenwood_get_mem(RIG *rig, vfo_t vfo, int *ch);
|
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
|
|
|
int kenwood_get_mem_if(RIG *rig, vfo_t vfo, int *ch);
|
|
|
|
int kenwood_get_channel(RIG *rig, channel_t *chan);
|
2009-02-10 22:48:25 +00:00
|
|
|
int kenwood_set_channel(RIG *rig, const channel_t *chan);
|
2004-05-02 17:17:31 +00:00
|
|
|
int kenwood_scan(RIG *rig, vfo_t vfo, scan_t scan, int ch);
|
2009-02-02 07:29:11 +00:00
|
|
|
const char * kenwood_get_info(RIG *rig);
|
2009-02-03 22:42:44 +00:00
|
|
|
int kenwood_get_id(RIG *rig, char *buf);
|
2000-12-23 08:40:14 +00:00
|
|
|
|
2001-12-20 07:46:13 +00:00
|
|
|
int kenwood_set_trn(RIG *rig, int trn);
|
|
|
|
int kenwood_get_trn(RIG *rig, int *trn);
|
2001-03-04 13:08:33 +00:00
|
|
|
|
2005-02-02 20:05:03 +00:00
|
|
|
/* only use if returned string has length 6, e.g. 'SQ011;' */
|
2015-03-13 12:37:29 +00:00
|
|
|
int get_kenwood_level(RIG *rig, const char *cmd, float *f);
|
2013-01-18 11:50:01 +00:00
|
|
|
int get_kenwood_func(RIG *rig, const char *cmd, int *status);
|
2005-02-02 20:05:03 +00:00
|
|
|
|
2002-01-03 21:42:53 +00:00
|
|
|
extern const struct rig_caps ts950sdx_caps;
|
|
|
|
extern const struct rig_caps ts50s_caps;
|
2003-11-16 17:31:32 +00:00
|
|
|
extern const struct rig_caps ts140_caps;
|
2001-08-08 21:32:25 +00:00
|
|
|
extern const struct rig_caps ts450s_caps;
|
2001-06-30 23:19:42 +00:00
|
|
|
extern const struct rig_caps ts570d_caps;
|
|
|
|
extern const struct rig_caps ts570s_caps;
|
2003-11-10 15:59:36 +00:00
|
|
|
extern const struct rig_caps ts680s_caps;
|
|
|
|
extern const struct rig_caps ts690s_caps;
|
2002-01-24 23:36:54 +00:00
|
|
|
extern const struct rig_caps ts790_caps;
|
2002-03-05 20:23:44 +00:00
|
|
|
extern const struct rig_caps ts850_caps;
|
2000-12-23 08:40:14 +00:00
|
|
|
extern const struct rig_caps ts870s_caps;
|
2003-03-15 23:58:41 +00:00
|
|
|
extern const struct rig_caps ts930_caps;
|
2001-12-11 21:58:37 +00:00
|
|
|
extern const struct rig_caps ts2000_caps;
|
2004-05-02 17:17:31 +00:00
|
|
|
extern const struct rig_caps k2_caps;
|
2008-09-01 19:01:13 +00:00
|
|
|
extern const struct rig_caps k3_caps;
|
2015-01-03 18:25:11 +00:00
|
|
|
extern const struct rig_caps xg3_caps;
|
2009-01-29 22:54:41 +00:00
|
|
|
extern const struct rig_caps trc80_caps;
|
2004-05-02 17:17:31 +00:00
|
|
|
|
2001-10-18 20:43:13 +00:00
|
|
|
extern const struct rig_caps thd7a_caps;
|
2011-05-26 21:21:15 +00:00
|
|
|
extern const struct rig_caps thd72a_caps;
|
2004-02-08 17:05:55 +00:00
|
|
|
extern const struct rig_caps tmd700_caps;
|
2001-11-09 15:44:38 +00:00
|
|
|
extern const struct rig_caps thf7a_caps;
|
|
|
|
extern const struct rig_caps thf7e_caps;
|
2003-09-28 16:14:00 +00:00
|
|
|
extern const struct rig_caps thg71_caps;
|
2004-03-20 10:23:43 +00:00
|
|
|
extern const struct rig_caps tmv7_caps;
|
2011-12-11 16:59:35 +00:00
|
|
|
extern const struct rig_caps tmd710_caps;
|
2000-12-23 08:40:14 +00:00
|
|
|
|
2004-05-02 17:17:31 +00:00
|
|
|
extern const struct rig_caps ts440_caps;
|
|
|
|
extern const struct rig_caps ts940_caps;
|
|
|
|
extern const struct rig_caps ts711_caps;
|
|
|
|
extern const struct rig_caps ts811_caps;
|
|
|
|
extern const struct rig_caps r5000_caps;
|
2000-12-23 08:40:14 +00:00
|
|
|
|
2004-11-27 13:19:56 +00:00
|
|
|
extern const struct rig_caps ts480_caps;
|
2010-10-28 07:28:12 +00:00
|
|
|
extern const struct rig_caps ts590_caps;
|
2014-11-04 16:23:39 +00:00
|
|
|
extern const struct rig_caps ts590sg_caps;
|
2010-10-04 02:49:27 +00:00
|
|
|
extern const struct rig_caps thf6a_caps;
|
2000-12-23 08:40:14 +00:00
|
|
|
|
2011-03-26 14:45:51 +00:00
|
|
|
extern const struct rig_caps transfox_caps;
|
|
|
|
|
2013-10-06 15:00:14 +00:00
|
|
|
extern const struct rig_caps f6k_caps;
|
2017-01-15 01:17:21 +00:00
|
|
|
extern const struct rig_caps pihpsdr_caps;
|
2018-12-22 17:03:41 +00:00
|
|
|
extern const struct rig_caps ts890s_caps;
|
2013-10-06 15:00:14 +00:00
|
|
|
|
2010-04-24 13:50:24 +00:00
|
|
|
/* use when not interested in the answer, but want to check its len */
|
2009-02-02 07:29:11 +00:00
|
|
|
static int inline kenwood_simple_transaction(RIG *rig, const char *cmd, size_t expected)
|
|
|
|
{
|
2014-12-24 13:02:25 +00:00
|
|
|
struct kenwood_priv_data *priv = rig->state.priv;
|
|
|
|
return kenwood_safe_transaction(rig, cmd, priv->info, KENWOOD_MAX_BUF_LEN, expected);
|
2009-02-02 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2004-05-02 17:17:31 +00:00
|
|
|
#endif /* _KENWOOD_H */
|