added support for IC-726 IC-765 IC-271 IC-471 IC-781

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1580 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.0
Stéphane Fillod, F8CFE 2003-11-10 16:01:21 +00:00
rodzic a82e2fa917
commit ed9cfdc0c1
8 zmienionych plików z 858 dodań i 3 usunięć

Wyświetl plik

@ -1,7 +1,8 @@
ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c \
ic275.c ic475.c ic821h.c icr7000.c ic910.c ic970.c \
ic725.c ic737.c ic718.c os535.c os456.c omni.c \
ic736.c ic746.c ic703.c ic7400.c
ic736.c ic746.c ic703.c ic7400.c ic726.c \
ic765.c ic781.c ic471.c
lib_LTLIBRARIES = hamlib-icom.la
hamlib_icom_la_SOURCES = $(ICOMSRCLIST) icom.c frame.c optoscan.c

152
icom/ic271.c 100644
Wyświetl plik

@ -0,0 +1,152 @@
/*
* Hamlib CI-V backend - description of IC-271 and variations
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: ic271.c,v 1.1 2003-11-10 16:01:21 fillods 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 "hamlib/rig.h"
#include "icom.h"
#define IC271_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
#define IC271_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define IC271_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO)
#define IC271_STR_CAL { 0, { } }
/*
* IC-271 A/E
* IC-271 H is high power (75W)
*
* Independant transmit/receive
*
* specs: http://www.qsl.net/sm7vhs/radio/icom/Ic271/specs.htm
*
* Please report testing / patches. Some capabilities may be missing too. --sf
*/
static const struct icom_priv_caps ic271_priv_caps = {
0x20, /* default address */
0, /* 731 mode */
ic737_ts_sc_list,
IC271_STR_CAL
};
const struct rig_caps ic271_caps = {
.rig_model = RIG_MODEL_IC271,
.model_name = "IC-271",
.mfg_name = "Icom",
.version = "0.2",
.copyright = "LGPL",
.status = RIG_STATUS_UNTESTED,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.dcd_type = RIG_DCD_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 1200,
.serial_rate_max = 9600,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.has_get_func = RIG_FUNC_NONE,
.has_set_func = RIG_FUNC_NONE,
.has_get_level = RIG_LEVEL_NONE,
.has_set_level = RIG_LEVEL_NONE,
.has_get_parm = RIG_PARM_NONE,
.has_set_parm = RIG_PARM_NONE,
.level_gran = {},
.parm_gran = {},
.ctcss_list = NULL,
.dcs_list = NULL,
.preamp = { RIG_DBLST_END, },
.attenuator = { RIG_DBLST_END, },
.max_rit = Hz(0),
.max_xit = Hz(0),
.max_ifshift = Hz(0),
.targetable_vfo = 0,
.vfo_ops = IC271_VFO_OPS,
.scan_ops = RIG_SCAN_NONE,
.transceive = RIG_TRN_RIG,
.bank_qty = 0,
.chan_desc_sz = 0,
.chan_list = {
{ 1, 32, RIG_MTYPE_MEM, IC_MIN_MEM_CAP },
RIG_CHAN_END,
},
.rx_range_list1 = {
{MHz(144),MHz(146),IC271_MODES,-1,-1,IC271_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list1 = {
{MHz(144),MHz(146),IC271_MODES,W(2.5),W(25),IC271_VFO_ALL},
RIG_FRNG_END, },
.rx_range_list2 = {
{MHz(143.8),MHz(148.2),IC271_MODES,-1,-1,IC271_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list2 = {
{MHz(144),MHz(148),IC271_MODES,W(2.5),W(25),IC271_VFO_ALL},
RIG_FRNG_END, },
.tuning_steps = {
{IC271_MODES,10}, /* TBC: does this rig supports settin tuning step? */
RIG_TS_END,
},
/* mode/filter list, remember: order matters! */
.filters = {
{RIG_MODE_SSB|RIG_MODE_CW, kHz(2.4)},
{RIG_MODE_FM, kHz(15)},
RIG_FLT_END,
},
.cfgparams = icom_cfg_params,
.set_conf = icom_set_conf,
.get_conf = icom_get_conf,
.priv = (void*)&ic271_priv_caps,
.rig_init = icom_init,
.rig_cleanup = icom_cleanup,
.rig_open = NULL,
.rig_close = NULL,
.set_freq = icom_set_freq,
.get_freq = icom_get_freq,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode,
.set_vfo = icom_set_vfo,
.decode_event = icom_decode_event,
.set_mem = icom_set_mem,
.vfo_op = icom_vfo_op,
};

149
icom/ic471.c 100644
Wyświetl plik

@ -0,0 +1,149 @@
/*
* Hamlib CI-V backend - description of IC-471 and variations
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: ic471.c,v 1.1 2003-11-10 16:01:21 fillods 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 "hamlib/rig.h"
#include "icom.h"
#define IC471_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
#define IC471_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define IC471_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO)
#define IC471_STR_CAL { 0, { } }
/*
* IC-471 A/E
* IC-471 H is high power (75W)
* specs: http://www.qsl.net/sm7vhs/radio/icom/ic471/specs.htm
*
* Please report testing / patches. Some capabilities may be missing too. --sf
*/
static const struct icom_priv_caps ic471_priv_caps = {
0x22, /* default address */
0, /* 731 mode */
ic737_ts_sc_list,
IC471_STR_CAL
};
const struct rig_caps ic471_caps = {
.rig_model = RIG_MODEL_IC471,
.model_name = "IC-471",
.mfg_name = "Icom",
.version = "0.2",
.copyright = "LGPL",
.status = RIG_STATUS_UNTESTED,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.dcd_type = RIG_DCD_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 1200,
.serial_rate_max = 9600,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.has_get_func = RIG_FUNC_NONE,
.has_set_func = RIG_FUNC_NONE,
.has_get_level = RIG_LEVEL_NONE,
.has_set_level = RIG_LEVEL_NONE,
.has_get_parm = RIG_PARM_NONE,
.has_set_parm = RIG_PARM_NONE,
.level_gran = {},
.parm_gran = {},
.ctcss_list = NULL,
.dcs_list = NULL,
.preamp = { RIG_DBLST_END, },
.attenuator = { RIG_DBLST_END, },
.max_rit = Hz(0),
.max_xit = Hz(0),
.max_ifshift = Hz(0),
.targetable_vfo = 0,
.vfo_ops = IC471_VFO_OPS,
.scan_ops = RIG_SCAN_NONE,
.transceive = RIG_TRN_RIG,
.bank_qty = 0,
.chan_desc_sz = 0,
.chan_list = {
{ 1, 38, RIG_MTYPE_MEM, IC_MIN_MEM_CAP },
RIG_CHAN_END,
},
.rx_range_list1 = {
{MHz(430),MHz(450),IC471_MODES,-1,-1,IC471_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list1 = {
{MHz(430),MHz(440),IC471_MODES,W(2.5),W(25),IC471_VFO_ALL},
RIG_FRNG_END, },
.rx_range_list2 = {
{MHz(430),MHz(450),IC471_MODES,-1,-1,IC471_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list2 = {
{MHz(430),MHz(450),IC471_MODES,W(2.5),W(25),IC471_VFO_ALL},
RIG_FRNG_END, },
.tuning_steps = {
{IC471_MODES,10}, /* TBC: does this rig supports settin tuning step? */
RIG_TS_END,
},
/* mode/filter list, remember: order matters! */
.filters = {
{RIG_MODE_SSB|RIG_MODE_CW, kHz(2.3)},
{RIG_MODE_FM, kHz(15)},
RIG_FLT_END,
},
.cfgparams = icom_cfg_params,
.set_conf = icom_set_conf,
.get_conf = icom_get_conf,
.priv = (void*)&ic471_priv_caps,
.rig_init = icom_init,
.rig_cleanup = icom_cleanup,
.rig_open = NULL,
.rig_close = NULL,
.set_freq = icom_set_freq,
.get_freq = icom_get_freq,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode,
.set_vfo = icom_set_vfo,
.decode_event = icom_decode_event,
.set_mem = icom_set_mem,
.vfo_op = icom_vfo_op,
};

171
icom/ic726.c 100644
Wyświetl plik

@ -0,0 +1,171 @@
/*
* Hamlib CI-V backend - description of IC-726 and variations
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: ic726.c,v 1.1 2003-11-10 16:01:21 fillods 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 "hamlib/rig.h"
#include "bandplan.h"
#include "icom.h"
#define IC726_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
/*
* IC-726
* specs: http://www.qsl.net/sm7vhs/radio/icom/ic726/specs.htm
*
*/
#define IC726_OTHER_TX_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
#define IC726_AM_TX_MODES (RIG_MODE_AM)
#define IC726_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define IC726_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO|RIG_OP_CPY|RIG_OP_MCL)
#define IC726_SCAN_OPS (RIG_SCAN_VFO|RIG_SCAN_MEM) /* TBC */
#define IC726_ANTS RIG_ANT_1
/*
*/
static const struct icom_priv_caps ic726_priv_caps = {
0x30, /* default address */
0, /* 731 mode */
ic737_ts_sc_list,
EMPTY_STR_CAL
};
const struct rig_caps ic726_caps = {
.rig_model = RIG_MODEL_IC726,
.model_name = "IC-726",
.mfg_name = "Icom",
.version = "0.2.1",
.copyright = "LGPL",
.status = RIG_STATUS_NEW,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.dcd_type = RIG_DCD_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 1200,
.serial_rate_max = 1200,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.has_get_func = RIG_FUNC_NONE,
.has_set_func = RIG_FUNC_NONE,
.has_get_level = RIG_LEVEL_NONE,
.has_set_level = RIG_LEVEL_NONE,
.has_get_parm = RIG_PARM_NONE,
.has_set_parm = RIG_PARM_NONE,
.level_gran = {},
.parm_gran = {},
.ctcss_list = NULL,
.dcs_list = NULL,
.preamp = { RIG_DBLST_END, },
.attenuator = { RIG_DBLST_END, },
.max_rit = Hz(0),
.max_xit = Hz(0),
.max_ifshift = Hz(0),
.targetable_vfo = 0,
.vfo_ops = IC726_VFO_OPS,
.scan_ops = IC726_SCAN_OPS,
.transceive = RIG_TRN_RIG,
.bank_qty = 0,
.chan_desc_sz = 0,
.chan_list = {
{ 1, 26, RIG_MTYPE_MEM, IC_MIN_MEM_CAP },
RIG_CHAN_END,
},
.rx_range_list1 = {
{kHz(500),MHz(30),IC726_ALL_RX_MODES,-1,-1,IC726_VFO_ALL},
{kHz(50),MHz(54),IC726_ALL_RX_MODES,-1,-1,IC726_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list1 = {
FRQ_RNG_HF(1,IC726_OTHER_TX_MODES, W(10),W(100),IC726_VFO_ALL,IC726_ANTS),
FRQ_RNG_HF(1,IC726_AM_TX_MODES, W(10),W(40),IC726_VFO_ALL,IC726_ANTS), /* AM class */
FRQ_RNG_6m(1,IC726_OTHER_TX_MODES, W(1),W(10),IC726_VFO_ALL,IC726_ANTS),
FRQ_RNG_6m(1,IC726_AM_TX_MODES, W(1),W(4),IC726_VFO_ALL,IC726_ANTS), /* AM class */
RIG_FRNG_END, },
.rx_range_list2 = {
{kHz(500),MHz(30),IC726_ALL_RX_MODES,-1,-1,IC726_VFO_ALL},
{kHz(50),MHz(54),IC726_ALL_RX_MODES,-1,-1,IC726_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list2 = {
FRQ_RNG_HF(2,IC726_OTHER_TX_MODES, W(10),W(100),IC726_VFO_ALL,IC726_ANTS),
FRQ_RNG_HF(2,IC726_AM_TX_MODES, W(10),W(40),IC726_VFO_ALL,IC726_ANTS), /* AM class */
FRQ_RNG_6m(2,IC726_OTHER_TX_MODES, W(1),W(10),IC726_VFO_ALL,IC726_ANTS),
FRQ_RNG_6m(2,IC726_AM_TX_MODES, W(1),W(4),IC726_VFO_ALL,IC726_ANTS), /* AM class */
RIG_FRNG_END, },
.tuning_steps = {
{IC726_ALL_RX_MODES,10}, /* basic resolution, there's no set_ts */
RIG_TS_END,
},
/* mode/filter list, remember: order matters! */
.filters = {
{RIG_MODE_SSB|RIG_MODE_CW, kHz(2.3)},
{RIG_MODE_AM, kHz(6)},
{RIG_MODE_FM, kHz(15)},
RIG_FLT_END,
},
.cfgparams = icom_cfg_params,
.set_conf = icom_set_conf,
.get_conf = icom_get_conf,
.priv = (void*)&ic726_priv_caps,
.rig_init = icom_init,
.rig_cleanup = icom_cleanup,
.rig_open = NULL,
.rig_close = NULL,
.set_freq = icom_set_freq,
.get_freq = icom_get_freq,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode,
.set_vfo = icom_set_vfo,
.set_split_vfo = icom_set_split_vfo,
.set_split_freq = icom_set_split_freq,
.get_split_freq = icom_get_split_freq,
.set_split_mode = icom_set_split_mode,
.get_split_mode = icom_get_split_mode,
.scan = icom_scan,
.decode_event = icom_decode_event,
.set_mem = icom_set_mem,
.vfo_op = icom_vfo_op,
};

185
icom/ic765.c 100644
Wyświetl plik

@ -0,0 +1,185 @@
/*
* Hamlib CI-V backend - description of IC-765 and variations
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: ic765.c,v 1.1 2003-11-10 16:01:21 fillods 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 "hamlib/rig.h"
#include "bandplan.h"
#include "icom.h"
#define IC765_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
/*
* IC-765
* specs: http://www.qsl.net/sm7vhs/radio/icom/ic765/specs.htm
*
*/
#define IC765_OTHER_TX_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
#define IC765_AM_TX_MODES (RIG_MODE_AM)
#define IC765_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define IC765_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO|RIG_OP_CPY|RIG_OP_MCL)
#define IC765_SCAN_OPS (RIG_SCAN_VFO|RIG_SCAN_MEM) /* TBC */
#define IC765_ANTS RIG_ANT_1
/*
*/
static const struct icom_priv_caps ic765_priv_caps = {
0x2c, /* default address */
0, /* 731 mode */
ic737_ts_sc_list,
EMPTY_STR_CAL
};
const struct rig_caps ic765_caps = {
.rig_model = RIG_MODEL_IC765,
.model_name = "IC-765",
.mfg_name = "Icom",
.version = "0.2.1",
.copyright = "LGPL",
.status = RIG_STATUS_NEW,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.dcd_type = RIG_DCD_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 1200,
.serial_rate_max = 1200,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.has_get_func = RIG_FUNC_NONE,
.has_set_func = RIG_FUNC_NONE,
.has_get_level = RIG_LEVEL_NONE,
.has_set_level = RIG_LEVEL_NONE,
.has_get_parm = RIG_PARM_NONE,
.has_set_parm = RIG_PARM_NONE,
.level_gran = {},
.parm_gran = {},
.ctcss_list = NULL,
.dcs_list = NULL,
.preamp = { RIG_DBLST_END, },
.attenuator = { RIG_DBLST_END, },
.max_rit = Hz(0),
.max_xit = Hz(0),
.max_ifshift = Hz(0),
.targetable_vfo = 0,
.vfo_ops = IC765_VFO_OPS,
.scan_ops = IC765_SCAN_OPS,
.transceive = RIG_TRN_RIG,
.bank_qty = 0,
.chan_desc_sz = 0,
.chan_list = {
{ 1, 99, RIG_MTYPE_MEM, IC_MIN_MEM_CAP },
{ 100, 101, RIG_MTYPE_EDGE, IC_MIN_MEM_CAP },
RIG_CHAN_END,
},
.rx_range_list1 = {
{kHz(100),MHz(30),IC765_ALL_RX_MODES,-1,-1,IC765_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list1 = {
FRQ_RNG_HF(1,IC765_OTHER_TX_MODES, W(10),W(100),IC765_VFO_ALL,IC765_ANTS),
FRQ_RNG_HF(1,IC765_AM_TX_MODES, W(10),W(40),IC765_VFO_ALL,IC765_ANTS), /* AM class */
RIG_FRNG_END, },
.rx_range_list2 = {
{kHz(100),MHz(30),IC765_ALL_RX_MODES,-1,-1,IC765_VFO_ALL},
RIG_FRNG_END, },
/* weird transmit ranges ... --sf */
.tx_range_list2 = {
{kHz(1800),1999999,IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL}, /* 100W class */
{kHz(1800),1999999,IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL}, /* 40W class */
{kHz(3400),4099999,IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{kHz(3400),4099999,IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{MHz(6.9),kHz(7499.99),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{MHz(6.9),kHz(7499.99),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{MHz(9.9),MHz(1049999),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{MHz(9.9),MHz(1049999),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{MHz(13.9),kHz(14.49999),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{MHz(13.9),kHz(14.49999),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{kHz(17900),kHz(18499.99),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{kHz(17900),kHz(18499.99),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{MHz(20.9),kHz(21499.99),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{MHz(20.9),kHz(21499.99),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{kHz(24400),kHz(25099.99),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{kHz(24400),kHz(25099.99),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
{MHz(28),MHz(30),IC765_OTHER_TX_MODES,5000,100000,IC765_VFO_ALL},
{MHz(28),MHz(30),IC765_AM_TX_MODES,2000,40000,IC765_VFO_ALL},
RIG_FRNG_END, },
.tuning_steps = {
{IC765_ALL_RX_MODES,10}, /* basic resolution, there's no set_ts */
RIG_TS_END,
},
/* mode/filter list, remember: order matters! */
.filters = {
{RIG_MODE_SSB|RIG_MODE_CW|RIG_MODE_RTTY, kHz(2.2)},
{RIG_MODE_CW|RIG_MODE_RTTY, Hz(500)}, /* narrow */
{RIG_MODE_AM, kHz(6)},
{RIG_MODE_FM, kHz(15)},
RIG_FLT_END,
},
.cfgparams = icom_cfg_params,
.set_conf = icom_set_conf,
.get_conf = icom_get_conf,
.priv = (void*)&ic765_priv_caps,
.rig_init = icom_init,
.rig_cleanup = icom_cleanup,
.rig_open = NULL,
.rig_close = NULL,
.set_freq = icom_set_freq,
.get_freq = icom_get_freq,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode,
.set_vfo = icom_set_vfo,
.set_split_vfo = icom_set_split_vfo,
.set_split_freq = icom_set_split_freq,
.get_split_freq = icom_get_split_freq,
.set_split_mode = icom_set_split_mode,
.get_split_mode = icom_get_split_mode,
.scan = icom_scan,
.decode_event = icom_decode_event,
.set_mem = icom_set_mem,
.vfo_op = icom_vfo_op,
};

189
icom/ic781.c 100644
Wyświetl plik

@ -0,0 +1,189 @@
/*
* Hamlib CI-V backend - description of IC-781 and variations
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: ic781.c,v 1.1 2003-11-10 16:01:21 fillods 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 "hamlib/rig.h"
#include "bandplan.h"
#include "icom.h"
#define IC781_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
/*
* IC-781
* specs: http://www.qsl.net/sm7vhs/radio/icom/ic781/specs.htm
*
* TODO: selected memory scan, delta-f scan, dual watch
*/
#define IC781_OTHER_TX_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM|RIG_MODE_RTTY)
#define IC781_AM_TX_MODES (RIG_MODE_AM)
#define IC781_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define IC781_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO|RIG_OP_CPY|RIG_OP_MCL|RIG_OP_XCHG)
#define IC781_SCAN_OPS (RIG_SCAN_VFO|RIG_SCAN_MEM) /* TBC */
#define IC781_ANTS RIG_ANT_1
/*
*/
static const struct icom_priv_caps ic781_priv_caps = {
0x26, /* default address */
0, /* 731 mode */
ic737_ts_sc_list,
EMPTY_STR_CAL
};
const struct rig_caps ic781_caps = {
.rig_model = RIG_MODEL_IC781,
.model_name = "IC-781",
.mfg_name = "Icom",
.version = "0.2.1",
.copyright = "LGPL",
.status = RIG_STATUS_NEW,
.rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_NONE,
.dcd_type = RIG_DCD_NONE,
.port_type = RIG_PORT_SERIAL,
.serial_rate_min = 1200,
.serial_rate_max = 1200,
.serial_data_bits = 8,
.serial_stop_bits = 1,
.serial_parity = RIG_PARITY_NONE,
.serial_handshake = RIG_HANDSHAKE_NONE,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.has_get_func = RIG_FUNC_NONE,
.has_set_func = RIG_FUNC_NONE,
.has_get_level = RIG_LEVEL_NONE,
.has_set_level = RIG_LEVEL_NONE,
.has_get_parm = RIG_PARM_NONE,
.has_set_parm = RIG_PARM_NONE,
.level_gran = {},
.parm_gran = {},
.ctcss_list = NULL,
.dcs_list = NULL,
.preamp = { RIG_DBLST_END, },
.attenuator = { RIG_DBLST_END, },
.max_rit = Hz(0),
.max_xit = Hz(0),
.max_ifshift = Hz(0),
.targetable_vfo = 0,
.vfo_ops = IC781_VFO_OPS,
.scan_ops = IC781_SCAN_OPS,
.transceive = RIG_TRN_RIG,
.bank_qty = 0,
.chan_desc_sz = 0,
.chan_list = {
{ 1, 99, RIG_MTYPE_MEM, IC_MIN_MEM_CAP },
{ 100, 101, RIG_MTYPE_EDGE, IC_MIN_MEM_CAP },
RIG_CHAN_END,
},
.rx_range_list1 = {
{kHz(100),MHz(30),IC781_ALL_RX_MODES,-1,-1,IC781_VFO_ALL},
RIG_FRNG_END, },
.tx_range_list1 = {
FRQ_RNG_HF(1,IC781_OTHER_TX_MODES, W(10),W(150),IC781_VFO_ALL,IC781_ANTS),
FRQ_RNG_HF(1,IC781_AM_TX_MODES, W(10),W(75),IC781_VFO_ALL,IC781_ANTS), /* AM class */
RIG_FRNG_END, },
.rx_range_list2 = {
{kHz(100),MHz(30),IC781_ALL_RX_MODES,-1,-1,IC781_VFO_ALL},
RIG_FRNG_END, },
/* weird transmit ranges ... --sf */
.tx_range_list2 = {
{kHz(1800),1999999,IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL}, /* 150W class */
{kHz(1800),1999999,IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL}, /* 75W class */
{kHz(3400),4099999,IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{kHz(3400),4099999,IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{MHz(6.9),kHz(7499.99),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{MHz(6.9),kHz(7499.99),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{MHz(9.9),MHz(1049999),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{MHz(9.9),MHz(1049999),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{MHz(13.9),kHz(14.49999),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{MHz(13.9),kHz(14.49999),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{kHz(17900),kHz(18499.99),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{kHz(17900),kHz(18499.99),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{MHz(20.9),kHz(21499.99),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{MHz(20.9),kHz(21499.99),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{kHz(24400),kHz(25099.99),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{kHz(24400),kHz(25099.99),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
{MHz(27.9),MHz(30),IC781_OTHER_TX_MODES,5000,150000,IC781_VFO_ALL},
{MHz(27.9),MHz(30),IC781_AM_TX_MODES,2000,75000,IC781_VFO_ALL},
RIG_FRNG_END, },
.tuning_steps = {
{IC781_ALL_RX_MODES,10}, /* basic resolution, there's no set_ts */
RIG_TS_END,
},
/* mode/filter list, remember: order matters! */
.filters = {
{RIG_MODE_AM, kHz(6)},
{RIG_MODE_SSB|RIG_MODE_CW|RIG_MODE_RTTY|RIG_MODE_AM, kHz(2.4)},
{RIG_MODE_CW|RIG_MODE_RTTY, Hz(500)}, /* narrow */
{RIG_MODE_CW|RIG_MODE_RTTY, Hz(250)}, /* narrow, with [CW250Hz] ON */
{RIG_MODE_FM, kHz(15)},
RIG_FLT_END,
},
.cfgparams = icom_cfg_params,
.set_conf = icom_set_conf,
.get_conf = icom_get_conf,
.priv = (void*)&ic781_priv_caps,
.rig_init = icom_init,
.rig_cleanup = icom_cleanup,
.rig_open = NULL,
.rig_close = NULL,
.set_freq = icom_set_freq,
.get_freq = icom_get_freq,
.set_mode = icom_set_mode,
.get_mode = icom_get_mode,
.set_vfo = icom_set_vfo,
.set_split_vfo = icom_set_split_vfo,
.set_split_freq = icom_set_split_freq,
.get_split_freq = icom_get_split_freq,
.set_split_mode = icom_set_split_mode,
.get_split_mode = icom_get_split_mode,
.scan = icom_scan,
.decode_event = icom_decode_event,
.set_mem = icom_set_mem,
.vfo_op = icom_vfo_op,
/* TODO: more capabilities */
};

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib CI-V backend - main file
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: icom.c,v 1.80 2003-11-05 20:40:27 fillods Exp $
* $Id: icom.c,v 1.81 2003-11-10 16:01:20 fillods 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
@ -2556,6 +2556,7 @@ DECLARE_INITRIG_BACKEND(icom)
rig_register(&ic706mkiig_caps);
rig_register(&ic718_caps);
rig_register(&ic725_caps);
rig_register(&ic726_caps);
rig_register(&ic735_caps);
rig_register(&ic736_caps);
rig_register(&ic737_caps);
@ -2566,6 +2567,8 @@ DECLARE_INITRIG_BACKEND(icom)
rig_register(&ic756_caps);
rig_register(&ic756pro_caps);
rig_register(&ic756pro2_caps);
rig_register(&ic765_caps);
rig_register(&ic781_caps);
rig_register(&ic821h_caps);
rig_register(&ic910_caps);
@ -2575,6 +2578,7 @@ DECLARE_INITRIG_BACKEND(icom)
rig_register(&icr8500_caps);
rig_register(&ic275_caps);
rig_register(&ic471_caps);
rig_register(&ic475_caps);
rig_register(&os535_caps);

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib CI-V backend - main header
* Copyright (c) 2000-2003 by Stephane Fillod
*
* $Id: icom.h,v 1.60 2003-11-05 20:40:27 fillods Exp $
* $Id: icom.h,v 1.61 2003-11-10 16:01:21 fillods 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
@ -162,6 +162,7 @@ extern const struct rig_caps ic706mkii_caps;
extern const struct rig_caps ic706mkiig_caps;
extern const struct rig_caps ic718_caps;
extern const struct rig_caps ic725_caps;
extern const struct rig_caps ic726_caps;
extern const struct rig_caps ic735_caps;
extern const struct rig_caps ic736_caps;
extern const struct rig_caps ic737_caps;
@ -171,13 +172,16 @@ extern const struct rig_caps ic746pro_caps;
extern const struct rig_caps ic756_caps;
extern const struct rig_caps ic756pro_caps;
extern const struct rig_caps ic756pro2_caps;
extern const struct rig_caps ic765_caps;
extern const struct rig_caps ic775_caps;
extern const struct rig_caps ic781_caps;
extern const struct rig_caps ic821h_caps;
extern const struct rig_caps ic910_caps;
extern const struct rig_caps ic970_caps;
extern const struct rig_caps icr7000_caps;
extern const struct rig_caps icr8500_caps;
extern const struct rig_caps ic275_caps;
extern const struct rig_caps ic471_caps;
extern const struct rig_caps ic475_caps;
extern const struct rig_caps omnivip_caps;