kopia lustrzana https://github.com/Hamlib/Hamlib
798 wiersze
23 KiB
C
798 wiersze
23 KiB
C
/*
|
|
* Hamlib Kenwood backend - TH handheld primitives
|
|
* Copyright (c) 2001 by Stephane Fillod
|
|
*
|
|
* $Id: th.c,v 1.4 2002-01-07 17:48:36 fgretief 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> /* Standard input/output definitions */
|
|
#include <string.h> /* String function definitions */
|
|
#include <unistd.h> /* UNIX standard function definitions */
|
|
#include <fcntl.h> /* File control definitions */
|
|
#include <errno.h> /* Error number definitions */
|
|
#include <termios.h> /* POSIX terminal control definitions */
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <hamlib/rig.h>
|
|
#include <hamlib/riglist.h>
|
|
#include "kenwood.h"
|
|
#include "th.h"
|
|
#include <serial.h>
|
|
|
|
const struct kenwood_priv_caps th_priv_caps = {
|
|
cmdtrm: "\r",
|
|
};
|
|
/* Note: Currently the code assumes the command termination is a
|
|
* single character.
|
|
*/
|
|
|
|
#undef TH_ADD_CMDTRM /* Let th_transaction add command termination */
|
|
#ifdef TH_ADD_CMDTRM
|
|
#define EOM
|
|
#else
|
|
#define EOM "\r"
|
|
#endif
|
|
|
|
/*
|
|
* modes in use by the "MD" command
|
|
*/
|
|
#define MD_FM '0'
|
|
#define MD_WFM '1' /* or is it AM on the THD7? */
|
|
#define MD_AM '2'
|
|
#define MD_LSB '3'
|
|
#define MD_USB '4'
|
|
#define MD_CW '5'
|
|
|
|
#define ACKBUF_LEN 64
|
|
|
|
/**
|
|
* th_transaction
|
|
* Assumes rig!=NULL rig->state!=NULL rig->caps!=NULL
|
|
*
|
|
* cmdstr - Command to be sent to the rig. Cmdstr can also be NULL, indicating
|
|
* that only a reply is needed (nothing will be send).
|
|
* data - Buffer for reply string. Can be NULL, indicating that no reply is
|
|
* is needed and will return with RIG_OK after command was sent.
|
|
* datasize - Size of buffer. It is the caller's responsibily to provide
|
|
* a large enough buffer for all possible replies for a command.
|
|
*
|
|
* returns:
|
|
* RIG_OK - if no error occured.
|
|
* RIG_EIO - if an I/O error occured while sending/receiving data.
|
|
* RIG_ETIMEOUT - if timeout expires without any characters received.
|
|
* RIG_REJECTED - if a negative acknowledge was received or command not
|
|
* recognized by rig.
|
|
*/
|
|
int
|
|
th_transaction (RIG *rig, const char *cmdstr, char *data, size_t datasize)
|
|
{
|
|
struct rig_state *rs;
|
|
struct rig_caps *rc;
|
|
int retval;
|
|
const char *cmdtrm = "\r"; /* Default Command/Reply termination char */
|
|
int retry_read = 0;
|
|
#define MAX_RETRY_READ 32
|
|
|
|
rs = &rig->state;
|
|
rs->hold_decode = 1;
|
|
|
|
rc = rig->caps;
|
|
if (rc->priv)
|
|
cmdtrm = ((struct kenwood_priv_caps *)rc->priv)->cmdtrm;
|
|
|
|
if (cmdstr) {
|
|
retval = write_block(&rs->rigport, cmdstr, strlen(cmdstr));
|
|
if (retval != RIG_OK)
|
|
goto transaction_quit;
|
|
#ifdef TH_ADD_CMDTRM
|
|
retval = write_block(&rs->rigport, cmdtrm, strlen(cmdtrm));
|
|
if (retval != RIG_OK)
|
|
goto transaction_quit;
|
|
#endif
|
|
}
|
|
|
|
if (data == NULL || datasize <= 0) {
|
|
rig->state.hold_decode = 0;
|
|
return RIG_OK; /* don't want a reply */
|
|
}
|
|
|
|
transaction_read:
|
|
retval = read_string(&rs->rigport, data, datasize, cmdtrm);
|
|
if (retval < 0)
|
|
goto transaction_quit;
|
|
|
|
/* Check that command termination is correct */
|
|
if (!strchr(cmdtrm, data[strlen(data)])) {
|
|
if (retry_read++ < MAX_RETRY_READ)
|
|
goto transaction_read;
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Command is not correctly terminated '%s'\n", data);
|
|
retval = -RIG_EPROTO;
|
|
goto transaction_quit;
|
|
}
|
|
|
|
/* Command recognised by rig but invalid data entered. */
|
|
if (strlen(data) == 2 && data[0] == 'N') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": NegAck for '%s'\n", cmdstr);
|
|
retval = -RIG_ERJCTED;
|
|
goto transaction_quit;
|
|
}
|
|
|
|
/* Command not understood by rig */
|
|
if (strlen(data) == 2 && data[0] == '?') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unknown command '%s'\n", cmdstr);
|
|
retval = -RIG_ERJCTED;
|
|
goto transaction_quit;
|
|
}
|
|
|
|
#define CONFIG_STRIP_CMDTRM 1
|
|
#ifdef CONFIG_STRIP_CMDTRM
|
|
data[strlen(data)-1] = '\000'; /* not very elegant, but should work. */
|
|
#endif
|
|
/*
|
|
* Check that received the correct reply. The first two characters
|
|
* should be the same as command.
|
|
*/
|
|
if (cmdstr && (data[0] != cmdstr[0] || data[1] != cmdstr[1])) {
|
|
/*
|
|
* TODO: When RIG_TRN is enabled, we can pass the string
|
|
* to the decoder for callback. That way we don't ignore
|
|
* any commands.
|
|
*/
|
|
if (retry_read++ < MAX_RETRY_READ)
|
|
goto transaction_read;
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", data);
|
|
retval = -RIG_EPROTO;
|
|
goto transaction_quit;
|
|
}
|
|
|
|
retval = RIG_OK;
|
|
transaction_quit:
|
|
rs->hold_decode = 0;
|
|
return retval;
|
|
}
|
|
|
|
/*
|
|
* th_decode_event is called by sa_sigio, when some asynchronous
|
|
* data has been received from the rig.
|
|
*/
|
|
int
|
|
th_decode_event (RIG *rig)
|
|
{
|
|
char asyncbuf[128];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
retval = th_transaction(rig, NULL, asyncbuf, sizeof(asyncbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": Decoding message\n");
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
if (asyncbuf[0] == 'B' && asyncbuf[1] == 'U' && asyncbuf[2] == 'F') {
|
|
|
|
vfo_t vfo;
|
|
freq_t freq, offset;
|
|
rmode_t mode;
|
|
int step, shift, rev, tone, ctcss, tonefq, ctcssfq;
|
|
|
|
retval = sscanf(asyncbuf, "BUF %d,%lld,%d,%d,%d,%d,%d,,%d,,%d,%lld,%d",
|
|
&vfo, &freq, &step, &shift, &rev, &tone,
|
|
&ctcss, &tonefq, &ctcssfq, &offset, &mode);
|
|
if (retval != 11) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected BUF message '%s'\n", asyncbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
/* Calibration and conversions */
|
|
vfo = (vfo == 0) ? RIG_VFO_A : RIG_VFO_B;
|
|
mode = (mode == 0) ? RIG_MODE_FM : RIG_MODE_AM;
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": Buffer (vfo %d, freq %lld Hz, mode %d)\n", vfo, freq, mode);
|
|
|
|
/* Callback execution */
|
|
if (rig->callbacks.vfo_event) {
|
|
rig->callbacks.vfo_event(rig, vfo);
|
|
}
|
|
if (rig->callbacks.freq_event) {
|
|
rig->callbacks.freq_event(rig, vfo, freq);
|
|
}
|
|
if (rig->callbacks.mode_event) {
|
|
rig->callbacks.mode_event(rig, vfo, mode, RIG_PASSBAND_NORMAL);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
} else if (asyncbuf[0] == 'S' && asyncbuf[1] == 'M') {
|
|
|
|
vfo_t vfo;
|
|
int lev;
|
|
retval = sscanf(asyncbuf, "SM %d,%d", &vfo, &lev);
|
|
if (retval != 2) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected SM message '%s'\n", asyncbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
/* Calibration and conversions */
|
|
vfo = (vfo == 0) ? RIG_VFO_A : RIG_VFO_B;
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": Signal strength event - signal = %.3f\n", (float)(lev / 5.0));
|
|
|
|
/* Callback execution */
|
|
#if STILLHAVETOADDCALLBACK
|
|
if (rig->callbacks.strength_event)
|
|
rig->callbacks.strength_event(rig, vfo,(float)(lev / 5.0) );
|
|
#endif
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
} else if (asyncbuf[0] == 'B' && asyncbuf[1] == 'Y') {
|
|
|
|
vfo_t vfo;
|
|
int busy;
|
|
|
|
retval = sscanf(asyncbuf, "BY %d,%d", &vfo, &busy);
|
|
if (retval != 2) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected BY message '%s'\n", asyncbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
vfo = (vfo == 0) ? RIG_VFO_A : RIG_VFO_B;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": Busy event - status = '%s'\n",
|
|
(busy == 0) ? "OFF" : "ON" );
|
|
return -RIG_ENIMPL;
|
|
/* This event does not have a callback. */
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
} else if (asyncbuf[0] == 'B' && asyncbuf[1] == 'C') {
|
|
|
|
vfo_t vfo;
|
|
retval = sscanf(asyncbuf, "BC %d", &vfo);
|
|
if (retval != 1) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected BC message '%s'\n", asyncbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
vfo = (vfo == 0) ? RIG_VFO_A : RIG_VFO_B;
|
|
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": VFO event - vfo = %d\n", vfo);
|
|
if (rig->callbacks.vfo_event)
|
|
rig->callbacks.vfo_event(rig, vfo);
|
|
|
|
/* --------------------------------------------------------------------- */
|
|
#if 0
|
|
} else if (asyncbuf[0] == 'V' && asyncbuf[1] == 'M' && asyncbuf[2] == 'C') {
|
|
|
|
vfo_t vfo;
|
|
vfo_t bandmode;
|
|
|
|
retval = sscanf(asyncbuf, "VMC %d,%d", &vfo, &bandmode);
|
|
if (retval != 1) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected VMC message '%s'\n", asyncbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
/* FIXME: I am not sure how to encode this command into Hamlib at the moment */
|
|
vfo = (vfo == 0) ? RIG_VFO_A : RIG_VFO_B;
|
|
switch (bandmode) {
|
|
case 0: bandmode = RIG_VFO_VFO; break;
|
|
case 2: bandmode = RIG_VFO_MEM; break;
|
|
//case 3: bandmode = RIG_VFO_CALL; break;
|
|
default: bandmode = RIG_VFO_CURR; break; /*FIXME: what is a better value? */
|
|
}
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": Mode of Band event - vfo = %d, %d\n", vfo, bandmode);
|
|
|
|
/* TODO: This event does not have a callback! */
|
|
return -RIG_ENIMPL;
|
|
#endif
|
|
/* --------------------------------------------------------------------- */
|
|
} else {
|
|
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unsupported transceive cmd '%s'\n", asyncbuf);
|
|
return -RIG_ENIMPL;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_set_freq
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_set_freq (RIG *rig, vfo_t vfo, freq_t freq)
|
|
{
|
|
char freqbuf[24], ackbuf[ACKBUF_LEN];
|
|
int retval, step;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
step = 0;
|
|
if (step < 0 || step > 9)
|
|
return -RIG_EINVAL;
|
|
|
|
sprintf(freqbuf, "FQ %011Ld,%d" EOM, freq, step);
|
|
retval = th_transaction(rig, freqbuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return RIG_OK;
|
|
|
|
if (ackbuf[0] != 'F' || ackbuf[1] != 'Q') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_freq
|
|
* Assumes rig!=NULL, freq!=NULL
|
|
*/
|
|
int
|
|
th_get_freq (RIG *rig, vfo_t vfo, freq_t *freq)
|
|
{
|
|
char vch, freqbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
*freq = 0;
|
|
vch = '0';
|
|
/* TODO: What about the VFO? */
|
|
|
|
retval = th_transaction (rig, "FQ" EOM, freqbuf, sizeof(freqbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
retval = sscanf(freqbuf, "FQ %lld", freq);
|
|
if (retval != 1) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", freqbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_set_mode
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_set_mode (RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
|
|
{
|
|
char kmode, mdbuf[24], ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
switch (vfo) {
|
|
case RIG_VFO_CURR: break;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unsupported VFO %d\n", vfo);
|
|
return -RIG_EINVAL;
|
|
}
|
|
|
|
/* TODO: Find from rig->caps what modes can be supported. */
|
|
switch (mode) {
|
|
case RIG_MODE_FM: kmode = '0'; break; /* TH-D7A(G) modes */
|
|
case RIG_MODE_AM: kmode = '1'; break;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR,__FUNCTION__": Unsupported Mode %d\n", mode);
|
|
return -RIG_EINVAL;
|
|
}
|
|
|
|
sprintf(mdbuf, "MD %c" EOM, kmode);
|
|
retval = th_transaction (rig, mdbuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (ackbuf[0] != 'M' || ackbuf[1] != 'D') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_mode
|
|
* Assumes rig!=NULL, mode!=NULL
|
|
*/
|
|
int
|
|
th_get_mode (RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
|
|
{
|
|
char vch, ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
/* TODO: What about the VFO? */
|
|
vch = '0';
|
|
|
|
retval = th_transaction (rig, "MD" EOM, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (strlen(ackbuf) < 4 || ackbuf[0] != 'M' || ackbuf[1] != 'D') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
switch (ackbuf[3]) {
|
|
case '0': *mode = RIG_MODE_FM; break; /* TH-D7A(G) modes */
|
|
case '1': *mode = RIG_MODE_AM; break;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unsupported Mode value '%c'\n", ackbuf[3]);
|
|
return -RIG_EINVAL;
|
|
}
|
|
|
|
if (width)
|
|
*width = RIG_PASSBAND_NORMAL;
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_set_vfo
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_set_vfo (RIG *rig, vfo_t vfo)
|
|
{
|
|
char vfobuf[16], ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
switch (vfo) {
|
|
case RIG_VFO_A:
|
|
sprintf(vfobuf, "BC 0" EOM);
|
|
break;
|
|
case RIG_VFO_B:
|
|
sprintf(vfobuf, "BC 1" EOM);
|
|
break;
|
|
|
|
#if 0 /* FIXME: don't know if this is the right place */
|
|
case RIG_VFO_VFO:
|
|
sprintf(vfobuf, "VMC0,0" EOM);
|
|
break;
|
|
case RIG_VFO_MEM:
|
|
sprintf(vfobuf, "VMC0,2" EOM);
|
|
break;
|
|
case RIG_VFO_CALL:
|
|
sprintf(vfobuf, "VMC0,3" EOM);
|
|
break;
|
|
#endif
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unsupported VFO %d\n", vfo);
|
|
return -RIG_EINVAL;
|
|
}
|
|
|
|
retval = th_transaction(rig, vfobuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (ackbuf[0] != 'B' || ackbuf[1] != 'C') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_vfo
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_get_vfo (RIG *rig, vfo_t *vfo)
|
|
{
|
|
char ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
retval = th_transaction (rig, "BC" EOM, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (strlen(ackbuf) < 4 || ackbuf[0] != 'B' || ackbuf[1] != 'C') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
switch (ackbuf[3]) {
|
|
case '0': *vfo = RIG_VFO_A; break;
|
|
case '1': *vfo = RIG_VFO_B; break;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected VFO value '%c'\n", ackbuf[3]);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
|
|
/*
|
|
* th_set_trn
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_set_trn(RIG *rig, int trn)
|
|
{
|
|
char trnbuf[16], ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
sprintf(trnbuf, "AI %c" EOM, (trn == RIG_TRN_RIG) ? '1' : '0');
|
|
retval = th_transaction (rig, trnbuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (ackbuf[0] != 'A' || ackbuf[1] != 'I') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_trn
|
|
* Assumes rig!=NULL
|
|
*/
|
|
int
|
|
th_get_trn (RIG *rig, int *trn)
|
|
{
|
|
char ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
retval = th_transaction(rig, "AI" EOM, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (strlen(ackbuf) < 4 || ackbuf[0] != 'A' || ackbuf[1] != 'I') {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
*trn = (ackbuf[3] != '0') ? RIG_TRN_RIG : RIG_TRN_OFF;
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_kenwood_func
|
|
* Assumes rig!=NULL, status!=NULL
|
|
*/
|
|
int
|
|
th_get_kenwood_func (RIG *rig, const char *cmd, int *status)
|
|
{
|
|
char ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
retval = th_transaction (rig, cmd, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
if (strlen(ackbuf) < 4 || ackbuf[0] != cmd[0] || ackbuf[1] != cmd[1]) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
if (strlen(cmd) == 4) {
|
|
*status = (ackbuf[4] == '0') ? 0 : 1;
|
|
} else {
|
|
*status = (ackbuf[3] == '0') ? 0 : 1;
|
|
}
|
|
return RIG_OK;
|
|
};
|
|
|
|
/*
|
|
* th_get_func
|
|
* Assumes rig!=NULL, status!=NULL
|
|
*/
|
|
int
|
|
th_get_func (RIG *rig, vfo_t vfo, setting_t func, int *status)
|
|
{
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called (0x%04x)\n", func);
|
|
|
|
/* FIXME: What about the VFO? */
|
|
|
|
/* Optimize:
|
|
* sort the switch cases with the most frequent first
|
|
*/
|
|
switch (func) {
|
|
case RIG_FUNC_MON: /* which one? */
|
|
case RIG_FUNC_SQL:
|
|
return th_get_kenwood_func(rig, "MON" EOM, status);
|
|
case RIG_FUNC_TONE:
|
|
return th_get_kenwood_func(rig, "TO" EOM, status);
|
|
case RIG_FUNC_TSQL:
|
|
return th_get_kenwood_func(rig, "CT" EOM, status);
|
|
case RIG_FUNC_REV:
|
|
return th_get_kenwood_func(rig, "REV" EOM, status);
|
|
case RIG_FUNC_ARO:
|
|
return th_get_kenwood_func(rig, "ARO" EOM, status);
|
|
case RIG_FUNC_AIP:
|
|
return th_get_kenwood_func(rig, "AIP" EOM, status);
|
|
case RIG_FUNC_LOCK:
|
|
return th_get_kenwood_func(rig, "LK" EOM, status);
|
|
case RIG_FUNC_LMP:
|
|
return th_get_kenwood_func(rig, "LMP" EOM, status);
|
|
|
|
case RIG_FUNC_FAGC:
|
|
case RIG_FUNC_NB:
|
|
case RIG_FUNC_COMP:
|
|
case RIG_FUNC_VOX:
|
|
case RIG_FUNC_SBKIN:
|
|
case RIG_FUNC_FBKIN:
|
|
case RIG_FUNC_ANF:
|
|
case RIG_FUNC_NR:
|
|
case RIG_FUNC_APF:
|
|
case RIG_FUNC_MN:
|
|
case RIG_FUNC_RNF:
|
|
case RIG_FUNC_MUTE:
|
|
case RIG_FUNC_VSC:
|
|
case RIG_FUNC_ABM:
|
|
case RIG_FUNC_BC:
|
|
case RIG_FUNC_MBC:
|
|
return -RIG_ENAVAIL;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR,__FUNCTION__": Unsupported function %#x", func);
|
|
return -RIG_EINVAL;
|
|
}
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* th_get_level
|
|
* Assumes rig!=NULL, val!=NULL
|
|
*/
|
|
int
|
|
th_get_level (RIG *rig, vfo_t vfo, setting_t level, value_t *val)
|
|
{
|
|
char vch, lvlbuf[32], ackbuf[ACKBUF_LEN];
|
|
int retval, v, l;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
switch (vfo) {
|
|
case RIG_VFO_A: vch = '0'; break;
|
|
case RIG_VFO_B: vch = '1'; break;
|
|
case RIG_VFO_CURR: vch = '0'; break; // FIXME: which one do I choose
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unsupported VFO %d\n", vfo);
|
|
return -RIG_EINVAL;
|
|
}
|
|
|
|
/* Optimize:
|
|
* sort the switch cases with the most frequent first
|
|
*/
|
|
switch (level) {
|
|
case RIG_LEVEL_STRENGTH:
|
|
sprintf(lvlbuf, "SM %c" EOM, vch);
|
|
retval = th_transaction (rig, lvlbuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
retval = sscanf(ackbuf, "SM %d,%d", &v, &l);
|
|
if (retval != 2 || l < 0 || l > 5) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
/* FIXME: should be in dB ! */
|
|
val->i = l;
|
|
break;
|
|
|
|
case RIG_LEVEL_SQL:
|
|
sprintf(lvlbuf, "SQ %c" EOM, vch);
|
|
retval = th_transaction (rig, lvlbuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
retval = sscanf(ackbuf, "SQ %d,%d", &v, &l);
|
|
if (retval != 2 || l < 0 || l > 5) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_ERJCTED;
|
|
}
|
|
|
|
/* range [0.0 ... 1.0] */
|
|
val->f = l / 5;
|
|
break;
|
|
|
|
case RIG_LEVEL_BALANCE:
|
|
return -RIG_ENIMPL;
|
|
case RIG_LEVEL_METER:
|
|
return -RIG_ENAVAIL;
|
|
default:
|
|
rig_debug(RIG_DEBUG_ERR,__FUNCTION__": Unsupported Level %d", level);
|
|
return -RIG_EINVAL;
|
|
}
|
|
return RIG_OK;
|
|
}
|
|
|
|
#ifndef RIG_TONEMAX
|
|
#define RIG_TONEMAX 38
|
|
#endif
|
|
|
|
/*
|
|
* th_set_ctcss_tone
|
|
* Assumes rig!=NULL, rig->caps->ctcss_list != NULL
|
|
*/
|
|
int
|
|
th_set_ctcss_tone(RIG *rig, vfo_t vfo, tone_t tone)
|
|
{
|
|
const struct rig_caps *caps;
|
|
unsigned char tonebuf[16], ackbuf[ACKBUF_LEN];
|
|
int i, retval;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
caps = rig->caps;
|
|
|
|
for (i = 0; caps->ctcss_list[i] != 0 && i < RIG_TONEMAX; i++) {
|
|
if (caps->ctcss_list[i] == tone)
|
|
break;
|
|
}
|
|
if (caps->ctcss_list[i] != tone)
|
|
return -RIG_EINVAL;
|
|
|
|
i += (i == 0) ? 1 : 2; /* Correct for TH-7DA index anomally */
|
|
sprintf(tonebuf, "CTN %02d" EOM, i);
|
|
retval = th_transaction(rig, tonebuf, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
return RIG_OK;
|
|
}
|
|
|
|
/*
|
|
* thd7_get_ctcss_tone
|
|
* Assumes rig!=NULL, rig->caps!=NULL
|
|
*/
|
|
int
|
|
th_get_ctcss_tone(RIG *rig, vfo_t vfo, tone_t *tone)
|
|
{
|
|
struct rig_caps *caps;
|
|
char ackbuf[ACKBUF_LEN];
|
|
int retval;
|
|
unsigned int tone_idx;
|
|
rig_debug(RIG_DEBUG_TRACE, __FUNCTION__": called\n");
|
|
|
|
caps = rig->caps;
|
|
|
|
retval = th_transaction (rig, "CTN" EOM, ackbuf, sizeof(ackbuf));
|
|
if (retval != RIG_OK)
|
|
return retval;
|
|
|
|
retval = sscanf(ackbuf, "CTN %d", (int*)&tone_idx);
|
|
if (retval != 1) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__
|
|
": Unexpected reply '%s'\n", ackbuf);
|
|
return -RIG_EPROTO;
|
|
}
|
|
|
|
/* verify tone index for TH-7DA rig */
|
|
if (tone_idx <= 0 || tone_idx == 2 || tone_idx > 39) {
|
|
rig_debug(RIG_DEBUG_ERR, __FUNCTION__
|
|
": Unexpected CTCSS no (%04d)\n", tone_idx);
|
|
return -RIG_EPROTO;
|
|
}
|
|
tone_idx -= (tone_idx == 1) ? 1 : 2; /* Correct for TH-7DA index anomaly */
|
|
*tone = caps->ctcss_list[tone_idx];
|
|
return RIG_OK;
|
|
}
|
|
|
|
/* end of file */
|