2002-07-08 22:10:43 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Drake backend - main header
|
2004-03-10 23:33:48 +00:00
|
|
|
* Copyright (c) 2001-2004 by Stephane Fillod
|
2002-07-08 22:10:43 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-20 23:33:26 +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.
|
2002-07-08 22:10:43 +00:00
|
|
|
*
|
2011-08-20 23:33:26 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2002-07-08 22:10:43 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-20 23:33:26 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2002-07-08 22:10:43 +00:00
|
|
|
*
|
2011-08-20 23:33:26 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2002-07-08 22:10:43 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-20 23:33:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-08 22:10:43 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DRAKE_H
|
|
|
|
#define _DRAKE_H 1
|
|
|
|
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
|
2006-10-07 17:56:26 +00:00
|
|
|
#define BACKEND_VER "0.5"
|
2005-04-10 21:57:13 +00:00
|
|
|
|
2004-03-10 23:33:48 +00:00
|
|
|
struct drake_priv_data {
|
|
|
|
int curr_ch;
|
|
|
|
};
|
2002-07-08 22:10:43 +00:00
|
|
|
|
|
|
|
int drake_set_freq(RIG *rig, vfo_t vfo, freq_t freq);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_freq(RIG *rig, vfo_t vfo, freq_t *freq);
|
2002-10-20 20:46:32 +00:00
|
|
|
int drake_set_vfo(RIG *rig, vfo_t vfo);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_vfo(RIG *rig, vfo_t *vfo);
|
2002-10-20 20:46:32 +00:00
|
|
|
int drake_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
|
2004-03-10 23:33:48 +00:00
|
|
|
int drake_init(RIG *rig);
|
|
|
|
int drake_cleanup(RIG *rig);
|
|
|
|
int drake_set_ant(RIG *rig, vfo_t vfo, ant_t ant);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_ant(RIG *rig, vfo_t vfo, ant_t *ant);
|
2004-03-10 23:33:48 +00:00
|
|
|
int drake_set_mem(RIG *rig, vfo_t vfo, int ch);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_mem(RIG *rig, vfo_t vfo, int *ch);
|
2004-09-05 00:33:56 +00:00
|
|
|
int drake_set_chan(RIG *rig, const channel_t *chan);
|
|
|
|
int drake_get_chan(RIG *rig, channel_t *chan);
|
2004-03-10 23:33:48 +00:00
|
|
|
int drake_vfo_op(RIG *rig, vfo_t vfo, vfo_op_t op);
|
|
|
|
int drake_set_func(RIG *rig, vfo_t vfo, setting_t func, int status);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_func(RIG *rig, vfo_t vfo, setting_t func, int *status);
|
2004-03-10 23:33:48 +00:00
|
|
|
int drake_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
|
2004-03-10 23:33:48 +00:00
|
|
|
int drake_set_powerstat (RIG * rig, powerstat_t status);
|
2004-06-04 21:48:05 +00:00
|
|
|
int drake_get_powerstat (RIG * rig, powerstat_t *status);
|
2002-10-20 20:46:32 +00:00
|
|
|
const char *drake_get_info(RIG *rig);
|
2002-07-08 22:10:43 +00:00
|
|
|
|
2004-03-10 23:33:48 +00:00
|
|
|
extern const struct rig_caps r8a_caps;
|
2002-07-08 22:10:43 +00:00
|
|
|
extern const struct rig_caps r8b_caps;
|
|
|
|
|
|
|
|
#endif /* _DRAKE_H */
|
|
|
|
|