2000-12-23 08:40:14 +00:00
|
|
|
|
/*
|
2001-07-13 19:08:15 +00:00
|
|
|
|
* Hamlib Kenwood backend - TS870S description
|
2008-03-01 11:20:30 +00:00
|
|
|
|
* Copyright (c) 2000-2008 by Stephane Fillod
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*
|
2009-02-03 23:22:58 +00:00
|
|
|
|
* $Id: ts870s.c,v 1.54 2009-02-03 23:22:58 azummo Exp $
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*
|
2001-07-13 19:08:15 +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.
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*
|
2001-07-13 19:08:15 +00:00
|
|
|
|
* 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.
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*
|
2001-07-13 19:08:15 +00:00
|
|
|
|
* 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.
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2001-07-13 19:08:15 +00:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-01-06 22:12:01 +00:00
|
|
|
|
#include <stdlib.h>
|
2003-10-01 19:32:04 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2000-12-23 08:40:14 +00:00
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
|
#include "kenwood.h"
|
2008-03-01 11:20:30 +00:00
|
|
|
|
#include "bandplan.h"
|
2000-12-23 08:40:14 +00:00
|
|
|
|
|
2005-02-03 20:22:21 +00:00
|
|
|
|
#define TS870S_ALL_MODES \
|
|
|
|
|
(RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_CWR|RIG_MODE_SSB \
|
|
|
|
|
|RIG_MODE_FM|RIG_MODE_RTTY|RIG_MODE_RTTYR)
|
|
|
|
|
#define TS870S_OTHER_TX_MODES \
|
|
|
|
|
(RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
|
2001-02-07 23:43:03 +00:00
|
|
|
|
#define TS870S_AM_TX_MODES RIG_MODE_AM
|
2000-12-23 08:40:14 +00:00
|
|
|
|
|
2005-02-03 20:22:21 +00:00
|
|
|
|
#define TS870S_FUNC_ALL \
|
|
|
|
|
(RIG_FUNC_NB|RIG_FUNC_COMP|RIG_FUNC_VOX|RIG_FUNC_NR \
|
|
|
|
|
|RIG_FUNC_BC|RIG_FUNC_ANF|RIG_FUNC_LOCK)
|
2000-12-23 08:40:14 +00:00
|
|
|
|
|
2005-02-03 20:51:19 +00:00
|
|
|
|
#define TS870S_LEVEL_SET \
|
|
|
|
|
(RIG_LEVEL_ATT|RIG_LEVEL_SQL|RIG_LEVEL_AGC|RIG_LEVEL_RFPOWER \
|
|
|
|
|
|RIG_LEVEL_AF|RIG_LEVEL_RF|RIG_LEVEL_MICGAIN|RIG_LEVEL_PREAMP)
|
|
|
|
|
|
|
|
|
|
#define TS870S_LEVEL_GET \
|
2005-02-03 20:22:21 +00:00
|
|
|
|
(RIG_LEVEL_ATT|RIG_LEVEL_SQL|RIG_LEVEL_STRENGTH|RIG_LEVEL_SWR \
|
|
|
|
|
|RIG_LEVEL_COMP|RIG_LEVEL_ALC|RIG_LEVEL_AGC|RIG_LEVEL_RFPOWER \
|
|
|
|
|
|RIG_LEVEL_AF|RIG_LEVEL_RF|RIG_LEVEL_MICGAIN|RIG_LEVEL_PREAMP)
|
2000-12-23 08:40:14 +00:00
|
|
|
|
|
2001-04-28 12:40:44 +00:00
|
|
|
|
#define TS870S_VFO (RIG_VFO_A|RIG_VFO_B)
|
2008-03-01 11:20:30 +00:00
|
|
|
|
#define TS870S_ANTS (RIG_ANT_1|RIG_ANT_2)
|
2001-04-28 12:40:44 +00:00
|
|
|
|
|
2009-01-28 23:30:59 +00:00
|
|
|
|
static struct kenwood_priv_caps ts870s_priv_caps = {
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.cmdtrm = EOM_KEN,
|
2002-03-13 23:42:43 +00:00
|
|
|
|
};
|
|
|
|
|
|
2003-06-23 17:48:27 +00:00
|
|
|
|
/* only the ts870s and ts2000 support get_vfo with the 'FR;' command
|
|
|
|
|
NOTE: using byte 31 in 'IF' will also work. TODO: check other rigs */
|
2005-02-24 22:35:24 +00:00
|
|
|
|
static int ts870s_get_vfo(RIG *rig, vfo_t *vfo)
|
2003-06-23 17:48:27 +00:00
|
|
|
|
{
|
2006-03-14 20:29:41 +00:00
|
|
|
|
char vfobuf[50];
|
|
|
|
|
size_t vfo_len;
|
|
|
|
|
int retval;
|
2003-06-23 17:48:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* query RX VFO */
|
|
|
|
|
vfo_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "FR", 2, vfobuf, &vfo_len);
|
2003-06-23 17:48:27 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
if (vfo_len != 4 || vfobuf[1] != 'R') {
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unexpected answer %s, "
|
2009-02-03 23:22:58 +00:00
|
|
|
|
"len=%d\n",__func__,vfobuf, vfo_len);
|
2003-06-23 17:48:27 +00:00
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* TODO: replace 0,1,2,.. constants by defines */
|
|
|
|
|
switch (vfobuf[2]) {
|
|
|
|
|
case '0': *vfo = RIG_VFO_A; break;
|
|
|
|
|
case '1': *vfo = RIG_VFO_B; break;
|
|
|
|
|
case '2': *vfo = RIG_VFO_MEM; break;
|
|
|
|
|
default:
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unsupported VFO %c\n",
|
2009-02-03 23:22:58 +00:00
|
|
|
|
__func__,vfobuf[2]);
|
2003-06-23 17:48:27 +00:00
|
|
|
|
return -RIG_EPROTO;
|
|
|
|
|
}
|
|
|
|
|
return RIG_OK;
|
|
|
|
|
}
|
2002-12-20 10:35:13 +00:00
|
|
|
|
|
2005-02-24 22:35:24 +00:00
|
|
|
|
static int ts870s_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
|
2002-12-20 10:35:13 +00:00
|
|
|
|
{
|
2006-03-14 20:29:41 +00:00
|
|
|
|
char buf[50];
|
|
|
|
|
size_t buf_len;
|
|
|
|
|
int retval;
|
2002-12-20 10:35:13 +00:00
|
|
|
|
|
|
|
|
|
buf_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "MD", 2, buf, &buf_len);
|
2002-12-20 10:35:13 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
if (buf_len != 4 || buf[1] != 'D')
|
|
|
|
|
{
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unexpected MD answer, len=%d\n",
|
2009-02-03 23:22:58 +00:00
|
|
|
|
__func__,buf_len);
|
2002-12-20 10:35:13 +00:00
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (buf[2])
|
|
|
|
|
{
|
|
|
|
|
case MD_CW: *mode = RIG_MODE_CW; break;
|
|
|
|
|
case MD_CWR: *mode = RIG_MODE_CWR; break;
|
|
|
|
|
case MD_USB: *mode = RIG_MODE_USB; break;
|
|
|
|
|
case MD_LSB: *mode = RIG_MODE_LSB; break;
|
|
|
|
|
case MD_FM: *mode = RIG_MODE_FM; break;
|
|
|
|
|
case MD_AM: *mode = RIG_MODE_AM; break;
|
|
|
|
|
case MD_FSK: *mode = RIG_MODE_RTTY; break;
|
|
|
|
|
case MD_FSKR: *mode = RIG_MODE_RTTYR; break;
|
|
|
|
|
case MD_NONE: *mode = RIG_MODE_NONE; break;
|
|
|
|
|
default:
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unsupported mode '%c'\n",
|
2009-02-03 23:22:58 +00:00
|
|
|
|
__func__,buf[2]);
|
2002-12-20 10:35:13 +00:00
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buf_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "FW", 2, buf, &buf_len);
|
2002-12-20 10:35:13 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
if (buf_len != 7 || buf[1] != 'W')
|
|
|
|
|
{
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unexpected FW answer, len=%d\n",
|
2009-02-03 23:22:58 +00:00
|
|
|
|
__func__,buf_len);
|
2002-12-20 10:35:13 +00:00
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*width = 10 * atoi(&buf[2]);
|
|
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-24 22:35:24 +00:00
|
|
|
|
static int ts870s_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
|
2002-12-20 15:43:31 +00:00
|
|
|
|
{
|
2009-02-03 22:56:07 +00:00
|
|
|
|
char buf[16];
|
|
|
|
|
int kmode, retval;
|
2002-12-20 15:43:31 +00:00
|
|
|
|
|
|
|
|
|
switch (mode)
|
|
|
|
|
{
|
|
|
|
|
case RIG_MODE_CW: kmode = MD_CW; break;
|
|
|
|
|
case RIG_MODE_CWR: kmode = MD_CWR; break;
|
|
|
|
|
case RIG_MODE_USB: kmode = MD_USB; break;
|
|
|
|
|
case RIG_MODE_LSB: kmode = MD_LSB; break;
|
|
|
|
|
case RIG_MODE_FM: kmode = MD_FM; break;
|
|
|
|
|
case RIG_MODE_AM: kmode = MD_AM; break;
|
|
|
|
|
case RIG_MODE_RTTY: kmode = MD_FSK; break;
|
|
|
|
|
case RIG_MODE_RTTYR: kmode = MD_FSKR; break;
|
|
|
|
|
default:
|
2004-11-15 16:23:49 +00:00
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"%s: unsupported mode %d\n",
|
2009-02-03 23:22:58 +00:00
|
|
|
|
__func__,mode);
|
2002-12-20 15:43:31 +00:00
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
2009-02-03 22:56:07 +00:00
|
|
|
|
sprintf(buf, "MD%c", kmode);
|
|
|
|
|
retval = kenwood_simple_cmd(rig, buf);
|
2002-12-20 15:43:31 +00:00
|
|
|
|
if (retval != RIG_OK) return retval;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This rig will simply use an IF bandpass which is closest to width,
|
|
|
|
|
* so we don't need to check the value...
|
|
|
|
|
*/
|
2009-02-03 22:56:07 +00:00
|
|
|
|
sprintf(buf, "FW%04d", (int)width/10);
|
|
|
|
|
return kenwood_simple_cmd(rig, buf);
|
2002-12-20 15:43:31 +00:00
|
|
|
|
}
|
2002-12-20 10:35:13 +00:00
|
|
|
|
|
2007-11-23 16:08:32 +00:00
|
|
|
|
int ts870s_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val)
|
|
|
|
|
{
|
2009-02-03 22:56:07 +00:00
|
|
|
|
char levelbuf[16];
|
2007-11-23 16:08:32 +00:00
|
|
|
|
int intval;
|
|
|
|
|
|
|
|
|
|
switch (level) {
|
|
|
|
|
case RIG_LEVEL_RFPOWER:
|
|
|
|
|
intval = val.f * 100;
|
2009-02-03 22:56:07 +00:00
|
|
|
|
sprintf(levelbuf, "PC%03d", intval);
|
|
|
|
|
return kenwood_simple_cmd(rig, levelbuf);
|
2007-11-23 16:08:32 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return kenwood_set_level (rig, vfo, level, val);
|
|
|
|
|
}
|
|
|
|
|
return RIG_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-24 22:35:24 +00:00
|
|
|
|
static int ts870s_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
|
2005-02-02 20:06:19 +00:00
|
|
|
|
{
|
2006-03-14 20:29:41 +00:00
|
|
|
|
char lvlbuf[50];
|
|
|
|
|
size_t lvl_len;
|
|
|
|
|
int lvl, retval;
|
2005-02-02 20:06:19 +00:00
|
|
|
|
int i, ret, agclevel;
|
|
|
|
|
|
|
|
|
|
lvl_len = 50;
|
|
|
|
|
switch (level) {
|
|
|
|
|
case RIG_LEVEL_STRENGTH:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "SM", 2, lvlbuf, &lvl_len);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
if (lvl_len != 7 || lvlbuf[1] != 'M') {
|
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"ts870s_get_level: "
|
|
|
|
|
"wrong answer len=%d\n", lvl_len);
|
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Frontend expects: -54 = S0, 0 = S9 */
|
|
|
|
|
sscanf(lvlbuf+2, "%d", &val->i);
|
2007-11-23 18:49:06 +00:00
|
|
|
|
val->i = (val->i * 3.6) - 54;
|
2005-02-02 20:06:19 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_SWR:
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 2, lvlbuf, &lvl_len);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
2005-02-03 20:22:21 +00:00
|
|
|
|
/* set meter to SWR if needed */
|
|
|
|
|
if (lvlbuf[2] != '1')
|
|
|
|
|
{
|
|
|
|
|
lvl_len = 0;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM1", 3, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 2, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
lvlbuf[7]='\0';
|
|
|
|
|
i=atoi(&lvlbuf[3]);
|
|
|
|
|
if(i == 30)
|
|
|
|
|
val->f = 150.0; /* infinity :-) */
|
|
|
|
|
else
|
|
|
|
|
val->f = 60.0/(30.0-(float)i)-1.0;
|
|
|
|
|
break;
|
|
|
|
|
|
2005-02-02 20:14:12 +00:00
|
|
|
|
case RIG_LEVEL_COMP:
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 2, lvlbuf, &lvl_len);
|
2005-02-02 20:14:12 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
2005-02-03 20:22:21 +00:00
|
|
|
|
/* set meter to COMP if needed */
|
|
|
|
|
if (lvlbuf[2] != '2')
|
|
|
|
|
{
|
|
|
|
|
lvl_len = 0;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM2", 3, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 3, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
2005-02-02 20:14:12 +00:00
|
|
|
|
|
|
|
|
|
lvlbuf[7]='\0';
|
|
|
|
|
val->f=(float)atoi(&lvlbuf[3])/30.0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_ALC:
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 2, lvlbuf, &lvl_len);
|
2005-02-02 20:14:12 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
2005-02-03 20:22:21 +00:00
|
|
|
|
/* set meter to ALC if needed */
|
|
|
|
|
if (lvlbuf[2] != '3')
|
|
|
|
|
{
|
|
|
|
|
lvl_len = 0;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM3", 3, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
lvl_len = 50;
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RM", 2, lvlbuf, &lvl_len);
|
2005-02-03 20:22:21 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
2005-02-02 20:14:12 +00:00
|
|
|
|
|
|
|
|
|
lvlbuf[7]='\0';
|
|
|
|
|
val->f=(float)atoi(&lvlbuf[3])/30.0;
|
|
|
|
|
break;
|
|
|
|
|
|
2005-02-02 20:06:19 +00:00
|
|
|
|
case RIG_LEVEL_ATT:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "RA", 2, lvlbuf, &lvl_len);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
if (lvl_len != 5) {
|
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"ts870s_get_level: "
|
|
|
|
|
"unexpected answer len=%d\n", lvl_len);
|
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sscanf(lvlbuf+2, "%d", &lvl);
|
|
|
|
|
if (lvl == 0) {
|
|
|
|
|
val->i = 0;
|
|
|
|
|
} else {
|
|
|
|
|
for (i=0; i<lvl && i<MAXDBLSTSIZ; i++)
|
|
|
|
|
if (rig->state.attenuator[i] == 0) {
|
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"ts870s_get_level: "
|
|
|
|
|
"unexpected att level %d\n", lvl);
|
|
|
|
|
return -RIG_EPROTO;
|
|
|
|
|
}
|
|
|
|
|
if (i != lvl)
|
|
|
|
|
return -RIG_EINTERNAL;
|
|
|
|
|
val->i = rig->state.attenuator[i-1];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case RIG_LEVEL_RFPOWER:
|
2007-11-23 16:08:32 +00:00
|
|
|
|
/* RFPOWER is 0..100 and not 0..255 like all the other levels*/
|
2009-02-03 22:13:55 +00:00
|
|
|
|
retval = kenwood_transaction (rig, "PC", 2, lvlbuf, &lvl_len);
|
2007-11-23 16:08:32 +00:00
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
|
return retval;
|
|
|
|
|
if (lvl_len != 6 || lvlbuf[1] != 'C')
|
|
|
|
|
{
|
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"ts870s_get_level: "
|
|
|
|
|
"wrong answer len=%d\n", lvl_len);
|
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
|
}
|
|
|
|
|
sscanf (lvlbuf + 2, "%d", &lvl);
|
|
|
|
|
val->f = lvl/100.;
|
|
|
|
|
break;
|
|
|
|
|
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_AF:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
return get_kenwood_level(rig, "AG", 2, &val->f);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_RF:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
return get_kenwood_level(rig, "RG", 2, &val->f);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_SQL:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
return get_kenwood_level(rig, "SQ", 2, &val->f);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_MICGAIN:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
return get_kenwood_level(rig, "MG", 2, &val->f);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_AGC:
|
2009-02-03 22:13:55 +00:00
|
|
|
|
ret = get_kenwood_level(rig, "GT", 2, &val->f);
|
2005-02-02 20:06:19 +00:00
|
|
|
|
agclevel = 255 * val->f;
|
|
|
|
|
if (agclevel == 0) val->i = 0;
|
|
|
|
|
else if (agclevel < 85) val->i = 1;
|
|
|
|
|
else if (agclevel < 170) val->i = 2;
|
|
|
|
|
else if (agclevel <= 255) val->i = 3;
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
case RIG_LEVEL_IF:
|
|
|
|
|
case RIG_LEVEL_APF:
|
|
|
|
|
case RIG_LEVEL_NR:
|
|
|
|
|
case RIG_LEVEL_PBT_IN:
|
|
|
|
|
case RIG_LEVEL_PBT_OUT:
|
|
|
|
|
case RIG_LEVEL_CWPITCH:
|
|
|
|
|
case RIG_LEVEL_KEYSPD:
|
|
|
|
|
case RIG_LEVEL_NOTCHF:
|
|
|
|
|
case RIG_LEVEL_BKINDL:
|
|
|
|
|
case RIG_LEVEL_BALANCE:
|
|
|
|
|
return -RIG_ENIMPL;
|
|
|
|
|
|
2005-02-02 20:23:10 +00:00
|
|
|
|
case RIG_LEVEL_PREAMP:
|
|
|
|
|
return -RIG_ENAVAIL;
|
|
|
|
|
|
2005-02-02 20:06:19 +00:00
|
|
|
|
default:
|
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"Unsupported get_level %d", level);
|
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-03 20:51:19 +00:00
|
|
|
|
|
2000-12-23 08:40:14 +00:00
|
|
|
|
/*
|
|
|
|
|
* ts870s rig capabilities.
|
|
|
|
|
* Notice that some rigs share the same functions.
|
|
|
|
|
* Also this struct is READONLY!
|
2001-02-07 23:43:03 +00:00
|
|
|
|
* RIT: Variable Range <EFBFBD>9.99 kHz
|
2001-04-28 12:40:44 +00:00
|
|
|
|
*
|
2002-08-16 17:43:02 +00:00
|
|
|
|
* part of infos comes from .http = //www.kenwood.net/
|
2000-12-23 08:40:14 +00:00
|
|
|
|
*/
|
|
|
|
|
const struct rig_caps ts870s_caps = {
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.rig_model = RIG_MODEL_TS870S,
|
|
|
|
|
.model_name = "TS-870S",
|
|
|
|
|
.mfg_name = "Kenwood",
|
2005-04-03 20:23:19 +00:00
|
|
|
|
.version = BACKEND_VER ".0",
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.copyright = "LGPL",
|
|
|
|
|
.status = RIG_STATUS_BETA,
|
|
|
|
|
.rig_type = RIG_TYPE_TRANSCEIVER,
|
|
|
|
|
.ptt_type = RIG_PTT_RIG,
|
|
|
|
|
.dcd_type = RIG_DCD_RIG,
|
|
|
|
|
.port_type = RIG_PORT_SERIAL,
|
|
|
|
|
.serial_rate_min = 1200,
|
|
|
|
|
.serial_rate_max = 57600,
|
|
|
|
|
.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 = TS870S_FUNC_ALL,
|
|
|
|
|
.has_set_func = TS870S_FUNC_ALL,
|
2005-02-03 20:51:19 +00:00
|
|
|
|
.has_get_level = TS870S_LEVEL_GET,
|
|
|
|
|
.has_set_level = TS870S_LEVEL_SET,
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.has_get_parm = RIG_PARM_NONE,
|
|
|
|
|
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
|
|
|
|
.level_gran = {}, /* FIXME: granularity */
|
|
|
|
|
.parm_gran = {},
|
|
|
|
|
.ctcss_list = kenwood38_ctcss_list,
|
|
|
|
|
.dcs_list = NULL,
|
|
|
|
|
.preamp = { RIG_DBLST_END, }, /* FIXME: preamp list */
|
|
|
|
|
.attenuator = { 6, 12, 18, RIG_DBLST_END, },
|
|
|
|
|
.max_rit = kHz(9.99),
|
|
|
|
|
.max_xit = kHz(9.99),
|
|
|
|
|
.max_ifshift = Hz(0),
|
|
|
|
|
.targetable_vfo = RIG_TARGETABLE_FREQ,
|
|
|
|
|
.transceive = RIG_TRN_RIG,
|
|
|
|
|
.bank_qty = 0,
|
|
|
|
|
.chan_desc_sz = 0,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.chan_list = {
|
2002-11-04 22:40:55 +00:00
|
|
|
|
{ 0, 89, RIG_MTYPE_MEM }, /* TBC */
|
|
|
|
|
{ 90, 99, RIG_MTYPE_EDGE },
|
2002-01-03 21:45:03 +00:00
|
|
|
|
RIG_CHAN_END,
|
|
|
|
|
},
|
|
|
|
|
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.rx_range_list1 = {
|
2008-03-01 11:20:30 +00:00
|
|
|
|
{kHz(100),MHz(30),TS870S_ALL_MODES,-1,-1,TS870S_VFO,TS870S_ANTS},
|
2002-01-03 21:45:03 +00:00
|
|
|
|
RIG_FRNG_END,
|
|
|
|
|
}, /* rx range */
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.tx_range_list1 = {
|
2008-03-01 11:20:30 +00:00
|
|
|
|
FRQ_RNG_HF(1, TS870S_OTHER_TX_MODES, W(5), W(100), TS870S_VFO, TS870S_ANTS), /* 100W class */
|
|
|
|
|
FRQ_RNG_HF(1, TS870S_AM_TX_MODES, W(2), W(25), TS870S_VFO, TS870S_ANTS), /* 25W class */
|
2002-01-03 21:45:03 +00:00
|
|
|
|
RIG_FRNG_END,
|
|
|
|
|
},
|
2001-05-04 22:37:35 +00:00
|
|
|
|
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.rx_range_list2 = {
|
2008-03-01 11:20:30 +00:00
|
|
|
|
{kHz(100),MHz(30),TS870S_ALL_MODES,-1,-1,TS870S_VFO,TS870S_ANTS},
|
2001-02-11 23:13:13 +00:00
|
|
|
|
RIG_FRNG_END,
|
2000-12-23 08:40:14 +00:00
|
|
|
|
}, /* rx range */
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.tx_range_list2 = {
|
2008-03-01 11:20:30 +00:00
|
|
|
|
FRQ_RNG_HF(2, TS870S_OTHER_TX_MODES, W(5), W(100), TS870S_VFO, TS870S_ANTS), /* 100W class */
|
|
|
|
|
FRQ_RNG_HF(2, TS870S_AM_TX_MODES, W(2), W(25), TS870S_VFO, TS870S_ANTS), /* 25W class */
|
2001-02-11 23:13:13 +00:00
|
|
|
|
RIG_FRNG_END,
|
2001-02-07 23:43:03 +00:00
|
|
|
|
}, /* tx range */
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.tuning_steps = {
|
2000-12-23 08:40:14 +00:00
|
|
|
|
{TS870S_ALL_MODES,50},
|
|
|
|
|
{TS870S_ALL_MODES,100},
|
2001-02-14 23:54:21 +00:00
|
|
|
|
{TS870S_ALL_MODES,kHz(1)},
|
|
|
|
|
{TS870S_ALL_MODES,kHz(5)},
|
|
|
|
|
{TS870S_ALL_MODES,kHz(9)},
|
|
|
|
|
{TS870S_ALL_MODES,kHz(10)},
|
2000-12-23 08:40:14 +00:00
|
|
|
|
{TS870S_ALL_MODES,12500},
|
2001-02-14 23:54:21 +00:00
|
|
|
|
{TS870S_ALL_MODES,kHz(20)},
|
|
|
|
|
{TS870S_ALL_MODES,kHz(25)},
|
|
|
|
|
{TS870S_ALL_MODES,kHz(100)},
|
2000-12-23 08:40:14 +00:00
|
|
|
|
{TS870S_ALL_MODES,MHz(1)},
|
|
|
|
|
{TS870S_ALL_MODES,0}, /* any tuning step */
|
2001-02-11 23:13:13 +00:00
|
|
|
|
RIG_TS_END,
|
2000-12-23 08:40:14 +00:00
|
|
|
|
},
|
2001-02-14 23:54:21 +00:00
|
|
|
|
/* mode/filter list, remember: order matters! */
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.filters = {
|
2002-12-20 23:44:16 +00:00
|
|
|
|
{RIG_MODE_SSB, Hz(200)},
|
|
|
|
|
{RIG_MODE_SSB, Hz(0)},
|
|
|
|
|
{RIG_MODE_SSB, Hz(600)},
|
2002-12-20 16:13:38 +00:00
|
|
|
|
{RIG_MODE_CW, Hz(400)},
|
|
|
|
|
{RIG_MODE_CW, Hz(100)},
|
|
|
|
|
{RIG_MODE_CW, Hz(1000)},
|
2002-12-20 23:44:16 +00:00
|
|
|
|
{RIG_MODE_RTTY, Hz(1000)},
|
2001-04-28 12:40:44 +00:00
|
|
|
|
{RIG_MODE_RTTY, Hz(500)},
|
2002-12-20 23:44:16 +00:00
|
|
|
|
{RIG_MODE_RTTY, Hz(1500)},
|
|
|
|
|
{RIG_MODE_AM, Hz(200)},
|
|
|
|
|
{RIG_MODE_AM, Hz(0)},
|
|
|
|
|
{RIG_MODE_AM, Hz(500)},
|
|
|
|
|
{RIG_MODE_FM, kHz(8)},
|
|
|
|
|
{RIG_MODE_FM, kHz(5)},
|
2001-04-28 12:40:44 +00:00
|
|
|
|
{RIG_MODE_FM, kHz(14)},
|
2001-02-14 23:54:21 +00:00
|
|
|
|
RIG_FLT_END,
|
|
|
|
|
},
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.priv = (void *)&ts870s_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 = kenwood_set_freq,
|
|
|
|
|
.get_freq = kenwood_get_freq,
|
2002-09-03 18:55:05 +00:00
|
|
|
|
.set_rit = kenwood_set_rit,
|
|
|
|
|
.get_rit = kenwood_get_rit,
|
2002-09-04 17:32:42 +00:00
|
|
|
|
.set_xit = kenwood_set_xit,
|
|
|
|
|
.get_xit = kenwood_get_xit,
|
2002-12-20 15:43:31 +00:00
|
|
|
|
.set_mode = ts870s_set_mode,
|
2002-12-20 10:35:13 +00:00
|
|
|
|
.get_mode = ts870s_get_mode,
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.set_vfo = kenwood_set_vfo,
|
2003-06-23 17:48:27 +00:00
|
|
|
|
.get_vfo = ts870s_get_vfo,
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.set_ctcss_tone = kenwood_set_ctcss_tone,
|
|
|
|
|
.get_ctcss_tone = kenwood_get_ctcss_tone,
|
|
|
|
|
.get_ptt = kenwood_get_ptt,
|
|
|
|
|
.set_ptt = kenwood_set_ptt,
|
|
|
|
|
.get_dcd = kenwood_get_dcd,
|
|
|
|
|
.set_func = kenwood_set_func,
|
|
|
|
|
.get_func = kenwood_get_func,
|
2007-11-23 16:08:32 +00:00
|
|
|
|
.set_level = ts870s_set_level,
|
2005-02-02 20:06:19 +00:00
|
|
|
|
.get_level = ts870s_get_level,
|
2008-03-01 11:20:30 +00:00
|
|
|
|
.set_ant = kenwood_set_ant,
|
|
|
|
|
.get_ant = kenwood_get_ant,
|
2002-09-04 14:31:12 +00:00
|
|
|
|
.send_morse = kenwood_send_morse,
|
2002-08-16 17:43:02 +00:00
|
|
|
|
.vfo_op = kenwood_vfo_op,
|
|
|
|
|
.set_mem = kenwood_set_mem,
|
|
|
|
|
.get_mem = kenwood_get_mem,
|
|
|
|
|
.set_trn = kenwood_set_trn,
|
|
|
|
|
.get_trn = kenwood_get_trn,
|
|
|
|
|
.set_powerstat = kenwood_set_powerstat,
|
|
|
|
|
.get_powerstat = kenwood_get_powerstat,
|
|
|
|
|
.reset = kenwood_reset,
|
2001-02-14 23:54:21 +00:00
|
|
|
|
|
2000-12-23 08:40:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Function definitions below
|
|
|
|
|
*/
|
|
|
|
|
|