2001-12-17 22:40:34 +00:00
|
|
|
/*
|
|
|
|
* Hamlib JRC backend - main header
|
2003-04-16 22:30:43 +00:00
|
|
|
* Copyright (c) 2001-2003 by Stephane Fillod
|
2001-12-17 22:40:34 +00:00
|
|
|
*
|
2003-04-16 22:30:43 +00:00
|
|
|
* $Id: jrc.h,v 1.5 2003-04-16 22:30:40 fillods Exp $
|
2001-12-17 22:40:34 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _JRC_H
|
|
|
|
#define _JRC_H 1
|
|
|
|
|
|
|
|
#include <hamlib/rig.h>
|
|
|
|
#include <cal.h>
|
|
|
|
|
|
|
|
struct jrc_priv_caps {
|
|
|
|
cal_table_t str_cal;
|
|
|
|
};
|
|
|
|
|
|
|
|
int jrc_open(RIG *rig);
|
|
|
|
int jrc_close(RIG *rig);
|
|
|
|
int jrc_set_freq(RIG *rig, vfo_t vfo, freq_t freq);
|
|
|
|
int jrc_get_freq(RIG *rig, vfo_t vfo, freq_t *freq);
|
|
|
|
int jrc_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
|
|
|
|
int jrc_set_func(RIG *rig, vfo_t vfo, setting_t func, int status);
|
|
|
|
int jrc_get_func(RIG *rig, vfo_t vfo, setting_t func, int *status);
|
|
|
|
int jrc_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val);
|
|
|
|
int jrc_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
|
2001-12-20 23:03:27 +00:00
|
|
|
int jrc_set_parm(RIG *rig, setting_t parm, value_t val);
|
|
|
|
int jrc_get_parm(RIG *rig, setting_t parm, value_t *val);
|
2001-12-17 22:40:34 +00:00
|
|
|
int jrc_get_dcd(RIG *rig, vfo_t vfo, dcd_t *dcd);
|
2001-12-20 08:02:01 +00:00
|
|
|
int jrc_set_trn(RIG *rig, int trn);
|
2001-12-17 22:40:34 +00:00
|
|
|
int jrc_set_mem(RIG *rig, vfo_t vfo, int ch);
|
|
|
|
int jrc_set_powerstat(RIG *rig, powerstat_t status);
|
|
|
|
int jrc_reset(RIG *rig, reset_t reset);
|
2001-12-20 23:03:27 +00:00
|
|
|
int jrc_vfo_op(RIG *rig, vfo_t vfo, vfo_op_t op);
|
|
|
|
int jrc_scan(RIG *rig, vfo_t vfo, scan_t scan, int ch);
|
|
|
|
int jrc_decode_event(RIG *rig);
|
2001-12-17 22:40:34 +00:00
|
|
|
|
|
|
|
extern const struct rig_caps nrd545_caps;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* _JRC_H */
|
|
|
|
|