/* * Hamlib Kenwood backend - TH-D7 description * Copyright (c) 2000-2002 by Stephane Fillod * * $Id: thd7.c,v 1.6 2002-03-13 23:42:43 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 /* Standard input/output definitions */ #include /* String function definitions */ #include /* UNIX standard function definitions */ #include /* File control definitions */ #include /* Error number definitions */ #include /* POSIX terminal control definitions */ #include #include #include #include "kenwood.h" #include "th.h" #if 1 #define RIG_ASSERT(x) if (!(x)) { rig_debug(RIG_DEBUG_ERR, "Assertion failed on line %i\n",__LINE__); abort(); } #else #define RIG_ASSERT(x) #endif #define THD7_MODES (RIG_MODE_FM|RIG_MODE_AM) #define THD7_MODES_TX (RIG_MODE_FM) #define THD7_FUNC_ALL (RIG_FUNC_TSQL| \ RIG_FUNC_AIP| \ RIG_FUNC_MON| \ RIG_FUNC_SQL| \ RIG_FUNC_TONE| \ RIG_FUNC_REV| \ RIG_FUNC_LOCK| \ RIG_FUNC_ARO| \ RIG_FUNC_LMP) #define THD7_LEVEL_ALL (RIG_LEVEL_STRENGTH| \ RIG_LEVEL_SQL| \ RIG_LEVEL_SQLSTAT| \ RIG_LEVEL_AF| \ RIG_LEVEL_RF|\ RIG_LEVEL_MICGAIN) #define THD7_VFO_OP (RIG_OP_UP|RIG_OP_DOWN) /* * TODO: Band A & B */ #define THD7_VFO (RIG_VFO_A|RIG_VFO_B) const struct kenwood_priv_caps thd7_priv_caps = { cmdtrm: EOM_TH, /* Command termination character */ }; /* * th-d7a rig capabilities. */ const struct rig_caps thd7a_caps = { rig_model: RIG_MODEL_THD7A, model_name:"TH-D7A", mfg_name: "Kenwood", version: "0.1", copyright: "LGPL", status: RIG_STATUS_ALPHA, rig_type: RIG_TYPE_HANDHELD|RIG_FLAG_APRS|RIG_FLAG_TNC|RIG_FLAG_DXCLUSTER, ptt_type: RIG_PTT_RIG, dcd_type: RIG_DCD_RIG, port_type: RIG_PORT_SERIAL, serial_rate_min: 9600, 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: THD7_FUNC_ALL, has_set_func: THD7_FUNC_ALL, has_get_level: THD7_LEVEL_ALL, has_set_level: RIG_LEVEL_SET(THD7_LEVEL_ALL), has_get_parm: RIG_PARM_NONE, has_set_parm: RIG_PARM_NONE, /* FIXME: parms */ level_gran: {}, /* FIXME: granularity */ parm_gran: {}, ctcss_list: kenwood38_ctcss_list, dcs_list: NULL, preamp: { RIG_DBLST_END, }, attenuator: { RIG_DBLST_END, }, max_rit: Hz(0), max_xit: Hz(0), max_ifshift: Hz(0), vfo_ops: THD7_VFO_OP, targetable_vfo: RIG_TARGETABLE_FREQ, transceive: RIG_TRN_RIG, bank_qty: 0, chan_desc_sz: 0, chan_list: { { 1, 200, RIG_MTYPE_MEM, 0 }, RIG_CHAN_END, }, /* FIXME: memory channel list: 200 memories */ rx_range_list1: { RIG_FRNG_END, }, /* FIXME: enter region 1 setting */ tx_range_list1: { RIG_FRNG_END, }, rx_range_list2: { {MHz(144),MHz(148),THD7_MODES,-1,-1,THD7_VFO}, {MHz(430),MHz(440),THD7_MODES,-1,-1,THD7_VFO}, RIG_FRNG_END, }, /* rx range */ tx_range_list2: { {MHz(144),MHz(148),THD7_MODES_TX,W(5.5),W(5.5),THD7_VFO}, {MHz(430),MHz(440),THD7_MODES_TX,W(5.5),W(5.5),THD7_VFO}, RIG_FRNG_END, }, /* tx range */ tuning_steps: { {THD7_MODES,kHz(5)}, {THD7_MODES,kHz(6.25)}, {THD7_MODES,kHz(10)}, {THD7_MODES,kHz(12.5)}, {THD7_MODES,kHz(15)}, {THD7_MODES,kHz(20)}, {THD7_MODES,kHz(25)}, {THD7_MODES,kHz(30)}, {THD7_MODES,kHz(50)}, {THD7_MODES,kHz(100)}, RIG_TS_END, }, /* mode/filter list, remember: order matters! */ filters: { {RIG_MODE_FM, kHz(14)}, {RIG_MODE_AM, kHz(9)}, RIG_FLT_END, }, priv: (void *)&thd7_priv_caps, rig_init: kenwood_init, rig_cleanup: kenwood_cleanup, rig_open: NULL, rig_close: NULL, set_freq: th_set_freq, get_freq: th_get_freq, set_mode: th_set_mode, get_mode: th_get_mode, set_vfo: th_set_vfo, get_vfo: th_get_vfo, set_ctcss_tone: th_set_ctcss_tone, get_ctcss_tone: th_get_ctcss_tone, set_mem: th_set_mem, get_mem: th_get_mem, set_trn: th_set_trn, get_trn: th_get_trn, get_func: th_get_func, get_level: th_get_level, get_info: th_get_info, decode_event: th_decode_event, }; /* end of file */