2002-07-08 22:10:43 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Drake backend - main file
|
|
|
|
* Copyright (c) 2001,2002 by Stephane Fillod
|
|
|
|
*
|
2002-10-20 20:46:32 +00:00
|
|
|
* $Id: drake.c,v 1.2 2002-10-20 20:46:32 fillods Exp $
|
2002-07-08 22:10:43 +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.
|
|
|
|
*
|
|
|
|
* 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 <sys/ioctl.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
#include <serial.h>
|
|
|
|
#include <misc.h>
|
|
|
|
|
|
|
|
#include "drake.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2002-10-20 20:46:32 +00:00
|
|
|
* Protocol information available at http://www.rldrake.com/swl/R8B.pdf
|
2002-07-08 22:10:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#define BUFSZ 64
|
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
#define CRLF "\x0d\x0a"
|
|
|
|
#define EOM CRLF
|
|
|
|
|
|
|
|
#define MD_USB '1'
|
|
|
|
#define MD_LSB '2'
|
|
|
|
#define MD_RTTY '3'
|
|
|
|
#define MD_CW '4'
|
|
|
|
#define MD_FM '5'
|
|
|
|
#define MD_AM '6'
|
|
|
|
|
|
|
|
|
2002-07-08 22:10:43 +00:00
|
|
|
/*
|
|
|
|
* drake_transaction
|
|
|
|
* We assume that rig!=NULL, rig->state!= NULL, data!=NULL, data_len!=NULL
|
|
|
|
*
|
|
|
|
* FIXME: this is a skeleton, rewrite me for Drake protocol
|
|
|
|
*/
|
|
|
|
int drake_transaction(RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
struct rig_state *rs;
|
|
|
|
|
|
|
|
rs = &rig->state;
|
|
|
|
|
|
|
|
serial_flush(&rs->rigport);
|
|
|
|
|
|
|
|
retval = write_block(&rs->rigport, cmd, cmd_len);
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
|
|
/* no data expected, TODO: flush input? */
|
|
|
|
if (!data || !data_len)
|
|
|
|
return 0;
|
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
*data_len = read_string(&rs->rigport, data, BUFSZ, CRLF, 1);
|
2002-07-08 22:10:43 +00:00
|
|
|
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* drake_set_freq
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
int drake_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
|
|
|
|
{
|
2002-10-20 20:46:32 +00:00
|
|
|
unsigned char freqbuf[16], ackbuf[16];
|
|
|
|
int freq_len, ack_len, retval;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 10Hz resolution
|
|
|
|
* TODO: round nearest?
|
|
|
|
*/
|
|
|
|
freq_len = sprintf(freqbuf,"F%07Ld" EOM, freq/10);
|
|
|
|
retval = drake_transaction(rig, freqbuf, freq_len, ackbuf, &ack_len);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* drake_set_vfo
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
int drake_set_vfo(RIG *rig, vfo_t vfo)
|
|
|
|
{
|
|
|
|
unsigned char cmdbuf[16], ackbuf[16];
|
|
|
|
int cmd_len, ack_len, retval;
|
|
|
|
char vfo_function;
|
|
|
|
|
|
|
|
switch (vfo) {
|
|
|
|
case RIG_VFO_VFO:
|
|
|
|
case RIG_VFO_A: vfo_function = 'A'; break;
|
|
|
|
case RIG_VFO_B: vfo_function = 'B'; break;
|
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"drake_set_vfo: unsupported VFO %d\n",
|
|
|
|
vfo);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd_len = sprintf(cmdbuf, "V%c" EOM, vfo_function);
|
|
|
|
|
|
|
|
retval = drake_transaction (rig, cmdbuf, cmd_len, ackbuf, &ack_len);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* drake_set_mode
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
int drake_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
|
|
|
|
{
|
|
|
|
unsigned char mdbuf[16], ackbuf[16];
|
|
|
|
unsigned char mode_sel, width_sel;
|
|
|
|
int mdbuf_len, ack_len, retval;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case RIG_MODE_CW: mode_sel = MD_CW; break;
|
|
|
|
case RIG_MODE_USB: mode_sel = MD_USB; break;
|
|
|
|
case RIG_MODE_LSB: mode_sel = MD_LSB; break;
|
|
|
|
case RIG_MODE_FM: mode_sel = MD_FM; break;
|
|
|
|
case RIG_MODE_AM: mode_sel = MD_AM; break;
|
|
|
|
case RIG_MODE_RTTY: mode_sel = MD_RTTY; break;
|
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"drake_set_mode: "
|
|
|
|
"unsupported mode %d\n", mode);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mdbuf_len = sprintf(mdbuf, "M%c" EOM, mode_sel);
|
|
|
|
retval = drake_transaction (rig, mdbuf, mdbuf_len, ackbuf, &ack_len);
|
|
|
|
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
if (mode != RIG_MODE_FM) {
|
|
|
|
|
|
|
|
if (width == RIG_PASSBAND_NORMAL)
|
|
|
|
width = rig_passband_normal(rig, mode);
|
|
|
|
|
|
|
|
switch (width) {
|
|
|
|
case 500: width_sel = '0'; break;
|
|
|
|
case 1800: width_sel = '1'; break;
|
|
|
|
case 2300: width_sel = '2'; break;
|
|
|
|
case 4000: width_sel = '4'; break;
|
|
|
|
case 6000: width_sel = '6'; break;
|
|
|
|
default:
|
|
|
|
rig_debug(RIG_DEBUG_ERR,"drake_set_mode: "
|
|
|
|
"unsupported width %d\n", width);
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
mdbuf_len = sprintf(mdbuf, "W%c" EOM, width_sel);
|
|
|
|
retval = drake_transaction (rig, mdbuf, mdbuf_len, ackbuf, &ack_len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
2002-07-08 22:10:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
/*
|
|
|
|
* drake_set_freq
|
|
|
|
* Assumes rig!=NULL
|
|
|
|
*/
|
|
|
|
const char *drake_get_info(RIG *rig)
|
|
|
|
{
|
|
|
|
static unsigned char idbuf[BUFSZ];
|
|
|
|
int retval, id_len;
|
|
|
|
|
|
|
|
retval = drake_transaction(rig, "ID" EOM, 4, idbuf, &id_len);
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
idbuf[id_len] = '\0';
|
|
|
|
|
|
|
|
return idbuf;
|
|
|
|
}
|
|
|
|
|
2002-07-08 22:10:43 +00:00
|
|
|
/*
|
|
|
|
* initrigs_drake is called by rig_backend_load
|
|
|
|
*/
|
|
|
|
int initrigs_drake(void *be_handle)
|
|
|
|
{
|
2002-10-20 20:46:32 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "drake: _init called\n");
|
2002-07-08 22:10:43 +00:00
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
rig_register(&r8b_caps);
|
2002-07-08 22:10:43 +00:00
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
return RIG_OK;
|
2002-07-08 22:10:43 +00:00
|
|
|
}
|
|
|
|
|
2002-10-20 20:46:32 +00:00
|
|
|
/*
|
|
|
|
* probe_drake
|
|
|
|
*/
|
|
|
|
rig_model_t probe_drake(port_t *port)
|
|
|
|
{
|
|
|
|
static unsigned char idbuf[BUFSZ];
|
|
|
|
int retval, id_len;
|
|
|
|
|
|
|
|
if (!port)
|
|
|
|
return RIG_MODEL_NONE;
|
|
|
|
|
|
|
|
port->write_delay = port->post_write_delay = 0;
|
|
|
|
port->timeout = 50;
|
|
|
|
port->retry = 1;
|
|
|
|
|
|
|
|
retval = serial_open(port);
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return RIG_MODEL_NONE;
|
|
|
|
|
|
|
|
retval = write_block(port, "ID" EOM, 4);
|
|
|
|
id_len = read_string(port, idbuf, BUFSZ, CRLF, 2);
|
|
|
|
|
|
|
|
close(port->fd);
|
|
|
|
|
|
|
|
if (retval != RIG_OK)
|
|
|
|
return RIG_MODEL_NONE;
|
|
|
|
|
|
|
|
idbuf[id_len] = '\0';
|
|
|
|
|
|
|
|
|
|
|
|
if (!strcmp(idbuf, "R8B"))
|
|
|
|
return RIG_MODEL_DKR8B;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* not found...
|
|
|
|
*/
|
|
|
|
rig_debug(RIG_DEBUG_VERBOSE,"probe_drake: found unknown device "
|
|
|
|
"with ID '%s', please report to Hamlib "
|
|
|
|
"developers.\n", idbuf);
|
|
|
|
|
|
|
|
return RIG_MODEL_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|