kopia lustrzana https://github.com/Hamlib/Hamlib
TS-480 initial support from Jurgen DC3BW
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1882 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.2.4
rodzic
32204bf237
commit
d0d8cc35d0
|
@ -2,7 +2,7 @@
|
||||||
* Hamlib Interface - list of known rigs
|
* Hamlib Interface - list of known rigs
|
||||||
* Copyright (c) 2000-2004 by Stephane Fillod and Frank Singleton
|
* Copyright (c) 2000-2004 by Stephane Fillod and Frank Singleton
|
||||||
*
|
*
|
||||||
* $Id: riglist.h,v 1.49 2004-11-15 16:54:43 fillods Exp $
|
* $Id: riglist.h,v 1.50 2004-11-27 13:19:56 fillods Exp $
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or modify
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* it under the terms of the GNU Library General Public License as
|
||||||
|
@ -116,6 +116,7 @@
|
||||||
#define RIG_MODEL_TS140S RIG_MAKE_MODEL(RIG_KENWOOD, 25)
|
#define RIG_MODEL_TS140S RIG_MAKE_MODEL(RIG_KENWOOD, 25)
|
||||||
#define RIG_MODEL_TMD700 RIG_MAKE_MODEL(RIG_KENWOOD, 26)
|
#define RIG_MODEL_TMD700 RIG_MAKE_MODEL(RIG_KENWOOD, 26)
|
||||||
#define RIG_MODEL_TMV7 RIG_MAKE_MODEL(RIG_KENWOOD, 27)
|
#define RIG_MODEL_TMV7 RIG_MAKE_MODEL(RIG_KENWOOD, 27)
|
||||||
|
#define RIG_MODEL_TS480 RIG_MAKE_MODEL(RIG_KENWOOD, 28)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Icom
|
* Icom
|
||||||
|
@ -336,6 +337,7 @@
|
||||||
#define RIG_MODEL_TT526 RIG_MAKE_MODEL(RIG_TENTEC, 6) /* 6N2 */
|
#define RIG_MODEL_TT526 RIG_MAKE_MODEL(RIG_TENTEC, 6) /* 6N2 */
|
||||||
#define RIG_MODEL_TT516 RIG_MAKE_MODEL(RIG_TENTEC, 7) /* Argonaut V */
|
#define RIG_MODEL_TT516 RIG_MAKE_MODEL(RIG_TENTEC, 7) /* Argonaut V */
|
||||||
#define RIG_MODEL_TT565 RIG_MAKE_MODEL(RIG_TENTEC, 8) /* Orion */
|
#define RIG_MODEL_TT565 RIG_MAKE_MODEL(RIG_TENTEC, 8) /* Orion */
|
||||||
|
#define RIG_MODEL_TT585 RIG_MAKE_MODEL(RIG_TENTEC, 9) /* Paragon */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Alinco
|
* Alinco
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
TSSRCLIST = ts850.c ts870s.c ts570.c ts450s.c ts950.c ts50s.c \
|
TSSRCLIST = ts850.c ts870s.c ts570.c ts450s.c ts950.c ts50s.c \
|
||||||
ts790.c ts2000.c k2.c ts930.c \
|
ts790.c ts2000.c k2.c ts930.c \
|
||||||
ts680.c ts690.c ts140.c
|
ts680.c ts690.c ts140.c ts480.c
|
||||||
|
|
||||||
IC10SRCLIST = ts440.c ts940.c ts711.c ts811.c r5000.c
|
IC10SRCLIST = ts440.c ts940.c ts711.c ts811.c r5000.c
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* Hamlib Kenwood backend - main file
|
* Hamlib Kenwood backend - main file
|
||||||
* Copyright (c) 2000-2004 by Stephane Fillod and others
|
* Copyright (c) 2000-2004 by Stephane Fillod and others
|
||||||
*
|
*
|
||||||
* $Id: kenwood.c,v 1.78 2004-09-26 08:35:04 fillods Exp $
|
* $Id: kenwood.c,v 1.79 2004-11-27 13:19:56 fillods Exp $
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or modify
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* it under the terms of the GNU Library General Public License as
|
||||||
|
@ -85,6 +85,7 @@ static const struct kenwood_id kenwood_id_list[] = {
|
||||||
{ RIG_MODEL_TS570D, 17 }, /* Elecraft K2 also returns 17 */
|
{ RIG_MODEL_TS570D, 17 }, /* Elecraft K2 also returns 17 */
|
||||||
{ RIG_MODEL_TS570S, 18 },
|
{ RIG_MODEL_TS570S, 18 },
|
||||||
{ RIG_MODEL_TS2000, 19 },
|
{ RIG_MODEL_TS2000, 19 },
|
||||||
|
{ RIG_MODEL_TS480, 20 },
|
||||||
{ RIG_MODEL_NONE, UNKNOWN_ID }, /* end marker */
|
{ RIG_MODEL_NONE, UNKNOWN_ID }, /* end marker */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1442,6 +1443,8 @@ DECLARE_INITRIG_BACKEND(kenwood)
|
||||||
rig_register(&thg71_caps);
|
rig_register(&thg71_caps);
|
||||||
rig_register(&tmv7_caps);
|
rig_register(&tmv7_caps);
|
||||||
|
|
||||||
|
rig_register(&ts480_caps);
|
||||||
|
|
||||||
return RIG_OK;
|
return RIG_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* Hamlib Kenwood backend - main header
|
* Hamlib Kenwood backend - main header
|
||||||
* Copyright (c) 2000-2004 by Stephane Fillod
|
* Copyright (c) 2000-2004 by Stephane Fillod
|
||||||
*
|
*
|
||||||
* $Id: kenwood.h,v 1.37 2004-06-13 12:36:51 fillods Exp $
|
* $Id: kenwood.h,v 1.38 2004-11-27 13:19:56 fillods Exp $
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or modify
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* it under the terms of the GNU Library General Public License as
|
||||||
|
@ -98,5 +98,6 @@ extern const struct rig_caps ts711_caps;
|
||||||
extern const struct rig_caps ts811_caps;
|
extern const struct rig_caps ts811_caps;
|
||||||
extern const struct rig_caps r5000_caps;
|
extern const struct rig_caps r5000_caps;
|
||||||
|
|
||||||
|
extern const struct rig_caps ts480_caps;
|
||||||
|
|
||||||
#endif /* _KENWOOD_H */
|
#endif /* _KENWOOD_H */
|
||||||
|
|
|
@ -0,0 +1,208 @@
|
||||||
|
/*
|
||||||
|
* Hamlib Kenwood backend - TS480 description
|
||||||
|
* Copyright (c) 2000-2004 by Stephane Fillod and Juergen Rinas
|
||||||
|
*
|
||||||
|
* $Id: ts480.c,v 1.1 2004-11-27 13:19:56 fillods Exp $
|
||||||
|
*
|
||||||
|
* 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 <stdio.h>
|
||||||
|
|
||||||
|
#include <hamlib/rig.h>
|
||||||
|
#include "kenwood.h"
|
||||||
|
|
||||||
|
#define TS480_ALL_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_CWR|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY|RIG_MODE_RTTYR)
|
||||||
|
#define TS480_OTHER_TX_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
|
||||||
|
#define TS480_AM_TX_MODES RIG_MODE_AM
|
||||||
|
#define TS480_VFO (RIG_VFO_A|RIG_VFO_B)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* kenwood_ts480_set_ptt
|
||||||
|
* Assumes rig!=NULL
|
||||||
|
*
|
||||||
|
* set PTT with audio from data connector (NOT microphone!!!)
|
||||||
|
*/
|
||||||
|
static int
|
||||||
|
kenwood_ts480_set_ptt (RIG * rig, vfo_t vfo, ptt_t ptt)
|
||||||
|
{
|
||||||
|
unsigned char ackbuf[16];
|
||||||
|
int ack_len = 0;
|
||||||
|
|
||||||
|
return kenwood_transaction (rig, ptt == RIG_PTT_ON ? "TX1;" : "RX;", 3, ackbuf, &ack_len);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* kenwood_ts480_get_info
|
||||||
|
* Assumes rig!=NULL
|
||||||
|
*/
|
||||||
|
static const char *
|
||||||
|
kenwood_ts480_get_info (RIG * rig)
|
||||||
|
{
|
||||||
|
unsigned char firmbuf[50];
|
||||||
|
int firm_len, retval;
|
||||||
|
|
||||||
|
firm_len = 50;
|
||||||
|
retval = kenwood_transaction (rig, "TY;", 3, firmbuf, &firm_len);
|
||||||
|
if (retval != RIG_OK)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if (firm_len != 6)
|
||||||
|
{
|
||||||
|
rig_debug (RIG_DEBUG_ERR, "kenwood_get_info: wrong answer len=%d\n", firm_len);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (firmbuf[4])
|
||||||
|
{
|
||||||
|
case '0':
|
||||||
|
return "TS-480HX (200W)";
|
||||||
|
case '1':
|
||||||
|
return "TS-480SAT (100W + AT)";
|
||||||
|
case '2':
|
||||||
|
return "Japanese 50W type";
|
||||||
|
case '3':
|
||||||
|
return "Japanese 20W type";
|
||||||
|
default:
|
||||||
|
return "Firmware: unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static const struct kenwood_priv_caps ts480_priv_caps = {
|
||||||
|
.cmdtrm = EOM_KEN,
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ts480 rig capabilities.
|
||||||
|
* Notice that some rigs share the same functions.
|
||||||
|
* Also this struct is READONLY!
|
||||||
|
*/
|
||||||
|
const struct rig_caps ts480_caps = {
|
||||||
|
.rig_model = RIG_MODEL_TS480,
|
||||||
|
.model_name = "TS-480",
|
||||||
|
.mfg_name = "Kenwood",
|
||||||
|
.version = "0.0.1",
|
||||||
|
.copyright = "LGPL",
|
||||||
|
.status = RIG_STATUS_NEW,
|
||||||
|
.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 = 115200,
|
||||||
|
.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,
|
||||||
|
.preamp = {12, RIG_DBLST_END,},
|
||||||
|
.attenuator = {12, 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,
|
||||||
|
|
||||||
|
.rx_range_list1 = {
|
||||||
|
{kHz (100), Hz (59999999), TS480_ALL_MODES, -1, -1, TS480_VFO},
|
||||||
|
RIG_FRNG_END,
|
||||||
|
}, /* rx range */
|
||||||
|
.tx_range_list1 = {
|
||||||
|
{kHz (1810), kHz (1850), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO}, /* 100W class */
|
||||||
|
{kHz (1810), kHz (1850), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO}, /* 25W class */
|
||||||
|
{kHz (3500), kHz (3800), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (3500), kHz (3800), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (7), kHz (7100), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (7), kHz (7100), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (10100), kHz (10150), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (10100), kHz (10150), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (14), kHz (14350), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (14), kHz (14350), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (18068), kHz (18168), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (18068), kHz (18168), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (21), kHz (21450), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (21), kHz (21450), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (24890), kHz (24990), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (24890), kHz (24990), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (28), kHz (29700), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (28), kHz (29700), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (50), kHz (52000), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (50), kHz (52000), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
RIG_FRNG_END,
|
||||||
|
},
|
||||||
|
.rx_range_list2 = {
|
||||||
|
{kHz (100), Hz (59999999), TS480_ALL_MODES, -1, -1, TS480_VFO},
|
||||||
|
RIG_FRNG_END,
|
||||||
|
}, /* rx range */
|
||||||
|
.tx_range_list2 = {
|
||||||
|
{kHz (1800), MHz (2) - 1, TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO}, /* 100W class */
|
||||||
|
{kHz (1800), MHz (2) - 1, TS480_AM_TX_MODES, 5000, 25000, TS480_VFO}, /* 25W class */
|
||||||
|
{kHz (3500), MHz (4) - 1, TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (3500), MHz (4) - 1, TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (5250), kHz (5450), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (5250), kHz (5450), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (7), kHz (7300), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (7), kHz (7300), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (10100), kHz (10150), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (10100), kHz (10150), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (14), kHz (14350), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (14), kHz (14350), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (18068), kHz (18168), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (18068), kHz (18168), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (21), kHz (21450), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (21), kHz (21450), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{kHz (24890), kHz (24990), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{kHz (24890), kHz (24990), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (28), kHz (29700), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (28), kHz (29700), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
{MHz (50), kHz (52000), TS480_OTHER_TX_MODES, 5000, 100000, TS480_VFO},
|
||||||
|
{MHz (50), kHz (52000), TS480_AM_TX_MODES, 5000, 25000, TS480_VFO},
|
||||||
|
RIG_FRNG_END,
|
||||||
|
}, /* tx range */
|
||||||
|
.priv = (void *) &ts480_priv_caps,
|
||||||
|
.set_freq = kenwood_set_freq,
|
||||||
|
.get_freq = kenwood_get_freq,
|
||||||
|
.set_rit = kenwood_set_rit, /* FIXME should this switch to rit mode or just set the frequency? */
|
||||||
|
.get_rit = kenwood_get_rit,
|
||||||
|
.set_xit = kenwood_set_xit, /* FIXME should this switch to xit mode or just set the frequency? */
|
||||||
|
.get_xit = kenwood_get_xit,
|
||||||
|
.set_mode = kenwood_set_mode,
|
||||||
|
.get_mode = kenwood_get_mode,
|
||||||
|
.set_vfo = kenwood_set_vfo,
|
||||||
|
.get_vfo = kenwood_get_vfo,
|
||||||
|
.get_ptt = kenwood_get_ptt,
|
||||||
|
.set_ptt = kenwood_ts480_set_ptt,
|
||||||
|
.get_dcd = kenwood_get_dcd,
|
||||||
|
.set_powerstat = kenwood_set_powerstat,
|
||||||
|
.get_powerstat = kenwood_get_powerstat,
|
||||||
|
.get_info = kenwood_ts480_get_info,
|
||||||
|
.reset = kenwood_reset,
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Function definitions below
|
||||||
|
*/
|
Ładowanie…
Reference in New Issue