From f575ad24abd9fb87072f1e7608eab68f8f0ecd29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sat, 16 Nov 2002 14:05:53 +0000 Subject: [PATCH] added IC 737 support git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1288 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- icom/Makefile.am | 4 +- icom/ic737.c | 182 +++++++++++++++++++++++++++++++++++++++++++++++ icom/icom.c | 3 +- icom/icom.h | 3 +- 4 files changed, 188 insertions(+), 4 deletions(-) create mode 100644 icom/ic737.c diff --git a/icom/Makefile.am b/icom/Makefile.am index 729f39a09..765559f52 100644 --- a/icom/Makefile.am +++ b/icom/Makefile.am @@ -1,6 +1,6 @@ ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c \ - ic275.c ic475.c ic821h.c icr7000.c ic910.c ic970.c \ - ic718.c os535.c os456.c omni.c + ic275.c ic475.c ic821h.c icr7000.c ic910.c ic970.c \ + ic737.c ic718.c os535.c os456.c omni.c lib_LTLIBRARIES = hamlib-icom.la hamlib_icom_la_SOURCES = $(ICOMSRCLIST) icom.c frame.c optoscan.c diff --git a/icom/ic737.c b/icom/ic737.c new file mode 100644 index 000000000..88d516be3 --- /dev/null +++ b/icom/ic737.c @@ -0,0 +1,182 @@ +/* + * Hamlib CI-V backend - description of IC-737 and variations + * Copyright (c) 2000-2002 by Stephane Fillod + * + * $Id: ic737.c,v 1.1 2002-11-16 14:05:53 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 +#include +#include "icom.h" + + +/* + * IC-737 + * TODO: add antenna caps and ic737_set_ant support: Cn 0x12, Sc 0x00/0x01 + */ + + +#define IC737_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM) + +/* + * 100W in all modes but AM (40W) + */ +#define IC737_OTHER_TX_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM) +#define IC737_AM_TX_MODES (RIG_MODE_AM) + +#define IC737_VFO_ALL (RIG_VFO_A|RIG_VFO_B) + +#define IC737_VFO_OPS (RIG_OP_FROM_VFO|RIG_OP_TO_VFO|RIG_OP_CPY) +#define IC737_SCAN_OPS (RIG_SCAN_MEM|RIG_SCAN_PROG|RIG_SCAN_VFO) + +#define IC737_ANTS 0 /* FIXME: declare both antenna connectors */ + +#define IC737_STR_CAL { 0, { } } + +/* + */ +static const struct icom_priv_caps ic737_priv_caps = { + 0x3c, /* default address */ + 0, /* 731 mode */ + ic737_ts_sc_list, + IC737_STR_CAL +}; + +const struct rig_caps ic737_caps = { +.rig_model = RIG_MODEL_IC737, +.model_name = "IC-737", +.mfg_name = "Icom", +.version = "0.2", +.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 = 19200, +.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 = IC737_VFO_OPS, +.scan_ops = IC737_SCAN_OPS, +.transceive = RIG_TRN_RIG, +.bank_qty = 0, +.chan_desc_sz = 0, + +.chan_list = { + { 1, 100, RIG_MTYPE_MEM }, + { 101, 101, RIG_MTYPE_EDGE }, + RIG_CHAN_END, + }, + +.rx_range_list1 = { + {kHz(30),MHz(30),IC737_ALL_RX_MODES,-1,-1,IC737_VFO_ALL,IC737_ANTS}, + RIG_FRNG_END, }, +.tx_range_list1 = { + FRQ_RNG_HF(1,IC737_OTHER_TX_MODES, W(10),W(100),IC737_VFO_ALL,IC737_ANTS), + FRQ_RNG_HF(1,IC737_AM_TX_MODES, W(10),W(40),IC737_VFO_ALL,IC737_ANTS), /* AM class */ + RIG_FRNG_END, + }, + +.rx_range_list2 = { + {kHz(30),MHz(30),IC737_ALL_RX_MODES,-1,-1,IC737_VFO_ALL,IC737_ANTS}, + RIG_FRNG_END, }, +.tx_range_list2 = { + FRQ_RNG_HF(2,IC737_OTHER_TX_MODES, W(10),W(100),IC737_VFO_ALL,IC737_ANTS), + FRQ_RNG_HF(2,IC737_AM_TX_MODES, W(10),W(40),IC737_VFO_ALL,IC737_ANTS), /* AM class */ + RIG_FRNG_END, + }, + +.tuning_steps = { + {IC737_ALL_RX_MODES,10}, + {IC737_ALL_RX_MODES,kHz(1)}, + {IC737_ALL_RX_MODES,kHz(2)}, + {IC737_ALL_RX_MODES,kHz(3)}, + {IC737_ALL_RX_MODES,kHz(4)}, + {IC737_ALL_RX_MODES,kHz(5)}, + {IC737_ALL_RX_MODES,kHz(6)}, + {IC737_ALL_RX_MODES,kHz(7)}, + {IC737_ALL_RX_MODES,kHz(8)}, + {IC737_ALL_RX_MODES,kHz(9)}, + {IC737_ALL_RX_MODES,kHz(10)}, + RIG_TS_END, + }, + + /* mode/filter list, remember: order matters! */ +.filters = { + {RIG_MODE_SSB|RIG_MODE_CW, kHz(2.1)}, + {RIG_MODE_AM, kHz(6)}, + {RIG_MODE_FM, kHz(12)}, + RIG_FLT_END, + }, + +.cfgparams = icom_cfg_params, +.set_conf = icom_set_conf, +.get_conf = icom_get_conf, + +.priv = (void*)&ic737_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, +.scan = icom_scan, +.set_ts = icom_set_ts, +.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, +.set_split = icom_set_split, + +}; + diff --git a/icom/icom.c b/icom/icom.c index ceef9c9f2..f02dcb311 100644 --- a/icom/icom.c +++ b/icom/icom.c @@ -2,7 +2,7 @@ * Hamlib CI-V backend - main file * Copyright (c) 2000-2002 by Stephane Fillod * - * $Id: icom.c,v 1.67 2002-11-04 22:25:11 fillods Exp $ + * $Id: icom.c,v 1.68 2002-11-16 14:05:53 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 @@ -2473,6 +2473,7 @@ int initrigs_icom(void *be_handle) rig_register(&ic706mkiig_caps); rig_register(&ic718_caps); rig_register(&ic735_caps); + rig_register(&ic737_caps); rig_register(&ic775_caps); rig_register(&ic756_caps); rig_register(&ic756pro_caps); diff --git a/icom/icom.h b/icom/icom.h index c87775b13..ac40ceaa6 100644 --- a/icom/icom.h +++ b/icom/icom.h @@ -2,7 +2,7 @@ * Hamlib CI-V backend - main header * Copyright (c) 2000-2002 by Stephane Fillod * - * $Id: icom.h,v 1.48 2002-11-04 22:26:49 fillods Exp $ + * $Id: icom.h,v 1.49 2002-11-16 14:05:53 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 @@ -137,6 +137,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 ic735_caps; +extern const struct rig_caps ic737_caps; extern const struct rig_caps ic756_caps; extern const struct rig_caps ic756pro_caps; extern const struct rig_caps ic756pro2_caps;