2001-07-14 16:45:40 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Tentec backend - main file
|
2009-01-11 12:42:24 +00:00
|
|
|
* Copyright (c) 2001-2009 by Stephane Fillod
|
2001-07-14 16:45:40 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-22 01:22:00 +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.
|
2001-07-14 16:45:40 +00:00
|
|
|
*
|
2011-08-22 01:22:00 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-07-14 16:45:40 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-22 01:22:00 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-14 16:45:40 +00:00
|
|
|
*
|
2011-08-22 01:22:00 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2001-07-14 16:45:40 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-22 01:22:00 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-14 16:45:40 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-10-01 19:32:04 +00:00
|
|
|
#include <stdio.h>
|
2001-07-14 16:45:40 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h> /* String function definitions */
|
|
|
|
#include <unistd.h> /* UNIX standard function definitions */
|
|
|
|
#include <math.h>
|
|
|
|
|
2003-04-07 22:42:11 +00:00
|
|
|
#include "hamlib/rig.h"
|
|
|
|
#include "serial.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "cal.h"
|
2003-04-16 22:30:43 +00:00
|
|
|
#include "register.h"
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
#include "tentec.h"
|
|
|
|
|
|
|
|
static void tentec_tuning_factor_calc(RIG *rig);
|
|
|
|
|
|
|
|
#define EOM "\015" /* CR */
|
|
|
|
|
|
|
|
#define TT_AM '0'
|
|
|
|
#define TT_USB '1'
|
|
|
|
#define TT_LSB '2'
|
|
|
|
#define TT_CW '3'
|
|
|
|
#define TT_FM '4'
|
|
|
|
|
|
|
|
static int tentec_filters[] = {
|
|
|
|
6000,5700,5400,5100,4800,4500,4200,3900,3600,3300,3000,2850,2700,2550,2400,
|
|
|
|
2250,2100,1950,1800,
|
|
|
|
1650,1500,1350,1200,1050, 900, 750, 675, 600, 525, 450, 375, 330, 300,8000
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_transaction
|
|
|
|
* read exactly data_len bytes
|
|
|
|
* We assume that rig!=NULL, rig->state!= NULL, data!=NULL, data_len!=NULL
|
|
|
|
* Otherwise, you'll get a nice seg fault. You've been warned!
|
|
|
|
*/
|
|
|
|
int tentec_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len)
|
|
|
|
{
|
2002-03-13 23:37:13 +00:00
|
|
|
int retval;
|
2001-07-14 16:45:40 +00:00
|
|
|
struct rig_state *rs;
|
|
|
|
|
|
|
|
rs = &rig->state;
|
|
|
|
|
2002-01-06 17:49:55 +00:00
|
|
|
serial_flush(&rs->rigport);
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
retval = write_block(&rs->rigport, cmd, cmd_len);
|
|
|
|
if (retval != RIG_OK)
|
2005-04-10 21:47:14 +00:00
|
|
|
return retval;
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
/* no data expected, TODO: flush input? */
|
|
|
|
if (!data || !data_len)
|
2005-04-10 21:47:14 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-03-15 00:16:44 +00:00
|
|
|
retval = read_string(&rs->rigport, data, *data_len, NULL, 0);
|
2005-04-10 21:47:14 +00:00
|
|
|
if (retval == -RIG_ETIMEOUT)
|
|
|
|
retval = 0;
|
|
|
|
if (retval < 0)
|
|
|
|
return retval;
|
|
|
|
*data_len = retval;
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_init:
|
|
|
|
* Basically, it just sets up *priv
|
|
|
|
*/
|
|
|
|
int tentec_init(RIG *rig)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv;
|
|
|
|
|
|
|
|
priv = (struct tentec_priv_data*)malloc(sizeof(struct tentec_priv_data));
|
|
|
|
|
|
|
|
if (!priv) {
|
|
|
|
/* whoops! memory shortage! */
|
|
|
|
return -RIG_ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(priv, 0, sizeof(struct tentec_priv_data));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set arbitrary initial status
|
|
|
|
*/
|
2006-01-09 21:14:40 +00:00
|
|
|
priv->freq = MHz(10);
|
2001-07-14 16:45:40 +00:00
|
|
|
priv->mode = RIG_MODE_AM;
|
|
|
|
priv->width = kHz(6);
|
2009-01-11 12:42:24 +00:00
|
|
|
priv->pbt = 0;
|
2006-01-09 21:14:40 +00:00
|
|
|
priv->cwbfo = 1000;
|
2009-01-11 12:42:24 +00:00
|
|
|
priv->agc = RIG_AGC_MEDIUM; /* medium */
|
2001-07-14 16:45:40 +00:00
|
|
|
priv->lnvol = priv->spkvol = 0.0; /* mute */
|
|
|
|
|
|
|
|
rig->state.priv = (rig_ptr_t)priv;
|
|
|
|
|
2002-09-06 14:05:41 +00:00
|
|
|
/* tentec_tuning_factor_calc needs rig->state.priv */
|
|
|
|
tentec_tuning_factor_calc(rig);
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Tentec generic tentec_cleanup routine
|
|
|
|
* the serial port is closed by the frontend
|
|
|
|
*/
|
|
|
|
int tentec_cleanup(RIG *rig)
|
|
|
|
{
|
|
|
|
if (rig->state.priv)
|
|
|
|
free(rig->state.priv);
|
|
|
|
|
|
|
|
rig->state.priv = NULL;
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
2002-01-06 17:49:55 +00:00
|
|
|
/*
|
|
|
|
* Tentec transceiver only open routine
|
|
|
|
* Restart and set program to execute.
|
|
|
|
*/
|
|
|
|
int tentec_trx_open(RIG *rig)
|
|
|
|
{
|
2002-03-13 23:37:13 +00:00
|
|
|
int retval;
|
2002-01-06 17:49:55 +00:00
|
|
|
|
|
|
|
/*
|
2011-08-22 01:22:00 +00:00
|
|
|
* be kind: use XX first, and do 'Dsp Program Execute' only
|
2002-01-06 17:49:55 +00:00
|
|
|
* in " DSP START" state.
|
|
|
|
*/
|
|
|
|
retval = tentec_transaction (rig, "P1" EOM, 3, NULL, NULL);
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Tuning Factor Calculations
|
|
|
|
* assumes rig!=NULL, rig->state.priv!=NULL
|
|
|
|
* assumes priv->mode in supported modes.
|
|
|
|
*/
|
|
|
|
static void tentec_tuning_factor_calc(RIG *rig)
|
|
|
|
{
|
2007-02-28 15:05:49 +00:00
|
|
|
struct tentec_priv_data *priv;
|
|
|
|
freq_t tfreq;
|
|
|
|
int adjtfreq, mcor, fcor, cwbfo;
|
2001-07-14 16:45:40 +00:00
|
|
|
|
2007-02-28 15:05:49 +00:00
|
|
|
priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
cwbfo = 0;
|
|
|
|
|
|
|
|
/* computed fcor only used if mode is not CW */
|
|
|
|
fcor = (int)floor((double)priv->width / 2.0) + 200;
|
2011-08-22 01:22:00 +00:00
|
|
|
|
2006-01-09 21:14:40 +00:00
|
|
|
switch (priv->mode) {
|
2007-02-28 15:05:49 +00:00
|
|
|
case RIG_MODE_AM:
|
|
|
|
case RIG_MODE_FM:
|
|
|
|
mcor=0; break;
|
2011-08-22 01:22:00 +00:00
|
|
|
case RIG_MODE_CW:
|
2007-02-28 15:05:49 +00:00
|
|
|
mcor=-1; cwbfo = priv->cwbfo; fcor = 0; break;
|
2006-01-09 21:14:40 +00:00
|
|
|
case RIG_MODE_LSB:
|
2007-02-28 15:05:49 +00:00
|
|
|
mcor=-1; break;
|
|
|
|
case RIG_MODE_USB:
|
|
|
|
mcor=1; break;
|
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_BUG, "tentec_tuning_factor_calc: invalid mode!\n");
|
|
|
|
mcor=1; break;
|
|
|
|
}
|
|
|
|
tfreq = priv->freq / (freq_t)Hz(1);
|
|
|
|
|
|
|
|
adjtfreq = (int)tfreq - 1250 + (int)(mcor * (fcor + priv->pbt));
|
|
|
|
|
|
|
|
priv->ctf = (adjtfreq / 2500) + 18000;
|
|
|
|
priv->ftf = (int)floor((double)(adjtfreq % 2500) * 5.46);
|
|
|
|
priv->btf = (int)floor((double)(fcor + priv->pbt + cwbfo + 8000) * 2.73);
|
2001-07-14 16:45:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_set_freq
|
|
|
|
* assumes rig!=NULL, rig->state.priv!=NULL
|
|
|
|
* assumes priv->mode in AM,CW,LSB or USB.
|
|
|
|
*/
|
|
|
|
int tentec_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv;
|
|
|
|
struct rig_state *rs = &rig->state;
|
|
|
|
int freq_len, retval;
|
|
|
|
char freqbuf[16];
|
2003-05-05 10:46:43 +00:00
|
|
|
freq_t old_freq;
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
|
2003-05-05 10:46:43 +00:00
|
|
|
old_freq = priv->freq;
|
|
|
|
priv->freq = freq;
|
2001-07-14 16:45:40 +00:00
|
|
|
tentec_tuning_factor_calc(rig);
|
|
|
|
|
2011-08-22 01:22:00 +00:00
|
|
|
freq_len = sprintf(freqbuf, "N%c%c%c%c%c%c" EOM,
|
2001-07-14 16:45:40 +00:00
|
|
|
priv->ctf >> 8, priv->ctf & 0xff,
|
|
|
|
priv->ftf >> 8, priv->ftf & 0xff,
|
|
|
|
priv->btf >> 8, priv->btf & 0xff);
|
2011-08-22 01:22:00 +00:00
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
retval = write_block(&rs->rigport, freqbuf, freq_len);
|
2003-05-05 10:46:43 +00:00
|
|
|
if (retval != RIG_OK) {
|
|
|
|
priv->freq = old_freq;
|
|
|
|
return retval;
|
|
|
|
}
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_get_freq
|
|
|
|
* Assumes rig!=NULL, freq!=NULL
|
|
|
|
*/
|
|
|
|
int tentec_get_freq(RIG *rig, vfo_t vfo, freq_t *freq)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
|
|
|
|
*freq = priv->freq;
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_set_mode
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
int tentec_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
struct rig_state *rs = &rig->state;
|
|
|
|
char ttmode;
|
|
|
|
rmode_t saved_mode;
|
|
|
|
pbwidth_t saved_width;
|
|
|
|
int mdbuf_len, ttfilter, retval;
|
|
|
|
char mdbuf[32];
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case RIG_MODE_USB: ttmode = TT_USB; break;
|
|
|
|
case RIG_MODE_LSB: ttmode = TT_LSB; break;
|
|
|
|
case RIG_MODE_CW: ttmode = TT_CW; break;
|
|
|
|
case RIG_MODE_AM: ttmode = TT_AM; break;
|
|
|
|
case RIG_MODE_FM: ttmode = TT_FM; break;
|
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,
|
|
|
|
"tentec_set_mode: unsupported mode %d\n",
|
|
|
|
mode);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
2011-08-22 01:22:00 +00:00
|
|
|
/* backup current values
|
2001-07-14 16:45:40 +00:00
|
|
|
* in case we fail to write to port
|
|
|
|
*/
|
|
|
|
saved_mode = priv->mode;
|
|
|
|
saved_width = priv->width;
|
|
|
|
|
2016-04-09 13:13:49 +00:00
|
|
|
if (width != RIG_PASSBAND_NOCHANGE) {
|
|
|
|
if (width == RIG_PASSBAND_NORMAL)
|
|
|
|
width = rig_passband_normal(rig, mode);
|
|
|
|
|
|
|
|
for (ttfilter=0; tentec_filters[ttfilter] != 0; ttfilter++) {
|
|
|
|
if (tentec_filters[ttfilter] == width)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tentec_filters[ttfilter] != width) {
|
|
|
|
rig_debug(RIG_DEBUG_ERR,
|
|
|
|
"tentec_set_mode: unsupported width %d\n",
|
|
|
|
width);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
priv->width = width;
|
|
|
|
}
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
priv->mode = mode;
|
|
|
|
|
|
|
|
tentec_tuning_factor_calc(rig);
|
|
|
|
|
2016-04-09 13:13:49 +00:00
|
|
|
if (width != RIG_PASSBAND_NOCHANGE) {
|
|
|
|
mdbuf_len = sprintf(mdbuf, "W%c" EOM
|
|
|
|
"N%c%c%c%c%c%c" EOM
|
|
|
|
"M%c" EOM,
|
|
|
|
ttfilter,
|
|
|
|
priv->ctf >> 8, priv->ctf & 0xff,
|
|
|
|
priv->ftf >> 8, priv->ftf & 0xff,
|
|
|
|
priv->btf >> 8, priv->btf & 0xff,
|
|
|
|
ttmode);
|
|
|
|
retval = write_block(&rs->rigport, mdbuf, mdbuf_len);
|
|
|
|
if (retval != RIG_OK) {
|
|
|
|
priv->mode = saved_mode;
|
|
|
|
priv->width = saved_width;
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mdbuf_len = sprintf(mdbuf,
|
|
|
|
"N%c%c%c%c%c%c" EOM
|
|
|
|
"M%c" EOM,
|
|
|
|
priv->ctf >> 8, priv->ctf & 0xff,
|
|
|
|
priv->ftf >> 8, priv->ftf & 0xff,
|
|
|
|
priv->btf >> 8, priv->btf & 0xff,
|
|
|
|
ttmode);
|
|
|
|
retval = write_block(&rs->rigport, mdbuf, mdbuf_len);
|
|
|
|
if (retval != RIG_OK) {
|
|
|
|
priv->mode = saved_mode;
|
|
|
|
return retval;
|
|
|
|
}
|
2001-07-14 16:45:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_get_mode
|
|
|
|
* Assumes rig!=NULL, mode!=NULL
|
|
|
|
*/
|
|
|
|
int tentec_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
|
|
|
|
{
|
2007-02-28 15:05:49 +00:00
|
|
|
struct tentec_priv_data *priv = (struct tentec_priv_data *)rig->state.priv;
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
*mode = priv->mode;
|
|
|
|
*width = priv->width;
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_set_level
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
* FIXME: cannot support PREAMP and ATT both at same time (make sens though)
|
|
|
|
*/
|
|
|
|
int tentec_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
struct rig_state *rs = &rig->state;
|
2006-10-07 17:38:05 +00:00
|
|
|
int cmd_len, retval=RIG_OK;
|
2001-07-14 16:45:40 +00:00
|
|
|
char cmdbuf[32];
|
|
|
|
|
|
|
|
/* Optimize:
|
|
|
|
* sort the switch cases with the most frequent first
|
|
|
|
*/
|
|
|
|
switch (level) {
|
|
|
|
case RIG_LEVEL_AGC:
|
2004-05-26 21:30:13 +00:00
|
|
|
/* default to MEDIUM */
|
|
|
|
cmd_len = sprintf(cmdbuf, "G%c" EOM,
|
|
|
|
val.i==RIG_AGC_SLOW ? '1' : (
|
|
|
|
val.i==RIG_AGC_FAST ? '3' : '2' ) );
|
2001-07-14 16:45:40 +00:00
|
|
|
retval = write_block(&rs->rigport, cmdbuf, cmd_len);
|
|
|
|
if (retval == RIG_OK)
|
2004-05-26 21:30:13 +00:00
|
|
|
priv->agc = val.i;
|
2001-07-14 16:45:40 +00:00
|
|
|
return retval;
|
2006-01-09 21:14:40 +00:00
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
case RIG_LEVEL_AF:
|
2011-08-22 01:22:00 +00:00
|
|
|
/* FIXME: support also separate Lineout setting
|
2001-07-14 16:45:40 +00:00
|
|
|
* -> need to create RIG_LEVEL_LINEOUT ?
|
|
|
|
*/
|
2006-01-09 21:14:40 +00:00
|
|
|
cmd_len = sprintf(cmdbuf, "C\x7f%c" EOM, (int)((1.0 - val.f) * 63.0));
|
2001-07-14 16:45:40 +00:00
|
|
|
retval = write_block(&rs->rigport, cmdbuf, cmd_len);
|
2011-08-22 01:22:00 +00:00
|
|
|
if (retval == RIG_OK)
|
2001-07-14 16:45:40 +00:00
|
|
|
priv->lnvol = priv->spkvol = val.f;
|
|
|
|
return retval;
|
|
|
|
|
2006-01-09 21:14:40 +00:00
|
|
|
case RIG_LEVEL_IF:
|
|
|
|
priv->pbt = val.i;
|
|
|
|
retval = tentec_set_freq(rig, vfo, priv->freq);
|
|
|
|
return retval;
|
2011-08-22 01:22:00 +00:00
|
|
|
|
2006-01-09 21:14:40 +00:00
|
|
|
case RIG_LEVEL_CWPITCH:
|
|
|
|
priv->cwbfo = val.i;
|
|
|
|
if(priv->mode == RIG_MODE_CW) {
|
|
|
|
retval = tentec_set_freq(rig, vfo, priv->freq);
|
2011-08-22 01:22:00 +00:00
|
|
|
}
|
2006-01-09 21:14:40 +00:00
|
|
|
return retval;
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"Unsupported set_level %d\n", level);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_get_level
|
|
|
|
* Assumes rig!=NULL, val!=NULL
|
|
|
|
*/
|
|
|
|
int tentec_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
|
|
|
|
{
|
|
|
|
struct tentec_priv_data *priv = (struct tentec_priv_data *)rig->state.priv;
|
|
|
|
int retval, lvl_len;
|
2003-05-05 10:46:43 +00:00
|
|
|
unsigned char lvlbuf[32];
|
2001-07-14 16:45:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Optimize:
|
|
|
|
* sort the switch cases with the most frequent first
|
|
|
|
*/
|
|
|
|
switch (level) {
|
2003-11-16 17:14:44 +00:00
|
|
|
case RIG_LEVEL_RAWSTR:
|
2001-07-14 16:45:40 +00:00
|
|
|
/* read A/D converted value */
|
|
|
|
lvl_len = 4;
|
2006-10-07 17:38:05 +00:00
|
|
|
retval = tentec_transaction (rig, "X" EOM, 2, (char *) lvlbuf, &lvl_len);
|
2001-07-14 16:45:40 +00:00
|
|
|
if (retval != RIG_OK)
|
|
|
|
return retval;
|
|
|
|
|
2003-05-05 10:46:43 +00:00
|
|
|
if (lvl_len != 3) {
|
2001-07-14 16:45:40 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR,"tentec_get_level: wrong answer"
|
|
|
|
"len=%d\n", lvl_len);
|
|
|
|
return -RIG_ERJCTED;
|
|
|
|
}
|
|
|
|
|
2003-05-05 10:46:43 +00:00
|
|
|
lvlbuf[3] = '\0';
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE,"tentec_get_level: cmd=%c,hi=%d,lo=%d\n",
|
|
|
|
lvlbuf[0],lvlbuf[1],lvlbuf[2]);
|
2003-11-16 17:14:44 +00:00
|
|
|
val->i = (lvlbuf[1]<<8) + lvlbuf[2];
|
2001-07-14 16:45:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RIG_LEVEL_AGC:
|
2004-05-26 21:30:13 +00:00
|
|
|
val->i = priv->agc;
|
2001-07-14 16:45:40 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RIG_LEVEL_AF:
|
|
|
|
val->f = priv->spkvol;
|
|
|
|
break;
|
|
|
|
|
2006-01-09 21:14:40 +00:00
|
|
|
case RIG_LEVEL_IF:
|
|
|
|
val->i = priv->pbt;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RIG_LEVEL_CWPITCH:
|
|
|
|
val->i = priv->cwbfo;
|
|
|
|
break;
|
|
|
|
|
2001-07-14 16:45:40 +00:00
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"Unsupported get_level %d\n", level);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* tentec_get_info
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
const char *tentec_get_info(RIG *rig)
|
|
|
|
{
|
|
|
|
static char buf[100]; /* FIXME: reentrancy */
|
|
|
|
int firmware_len, retval;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* protocol version
|
|
|
|
*/
|
2006-01-09 21:14:40 +00:00
|
|
|
firmware_len = 10;
|
2001-07-14 16:45:40 +00:00
|
|
|
retval = tentec_transaction (rig, "?" EOM, 2, buf, &firmware_len);
|
2006-01-09 21:14:40 +00:00
|
|
|
if ( (retval != RIG_OK) || (firmware_len > 10) ) {
|
2001-07-14 16:45:40 +00:00
|
|
|
rig_debug(RIG_DEBUG_ERR,"tentec_get_info: ack NG, len=%d\n",
|
|
|
|
firmware_len);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-12-28 20:28:04 +00:00
|
|
|
* initrigs_tentec is called by rig_backend_load
|
2001-07-14 16:45:40 +00:00
|
|
|
*/
|
2003-04-16 22:30:43 +00:00
|
|
|
DECLARE_INITRIG_BACKEND(tentec)
|
2001-07-14 16:45:40 +00:00
|
|
|
{
|
2003-05-12 22:29:59 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "tentec: _init called\n");
|
2001-07-14 16:45:40 +00:00
|
|
|
|
2003-05-12 22:29:59 +00:00
|
|
|
rig_register(&tt550_caps);
|
|
|
|
rig_register(&tt516_caps);
|
2004-05-03 22:34:14 +00:00
|
|
|
rig_register(&tt565_caps);
|
|
|
|
rig_register(&tt538_caps);
|
2009-04-22 20:43:26 +00:00
|
|
|
rig_register(&tt585_caps);
|
2009-01-11 12:42:24 +00:00
|
|
|
rig_register(&tt588_caps);
|
2011-09-01 20:12:25 +00:00
|
|
|
rig_register(&tt599_caps);
|
2003-05-12 22:29:59 +00:00
|
|
|
rig_register(&rx320_caps);
|
2010-07-01 20:28:00 +00:00
|
|
|
rig_register(&rx331_caps);
|
2004-05-03 22:34:14 +00:00
|
|
|
rig_register(&rx340_caps);
|
|
|
|
rig_register(&rx350_caps);
|
2001-07-14 16:45:40 +00:00
|
|
|
|
2003-05-12 22:29:59 +00:00
|
|
|
return RIG_OK;
|
2001-07-14 16:45:40 +00:00
|
|
|
}
|
|
|
|
|