From 629a1ed884a5d163b9c43f3fc9fc370bbaa223ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Mon, 23 Mar 2009 22:26:56 +0000 Subject: [PATCH] BC898 cloned after BC895 git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2682 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- include/hamlib/riglist.h | 1 + uniden/Makefile.am | 2 +- uniden/bc898.c | 166 +++++++++++++++++++++++++++++++++++++++ uniden/uniden.c | 6 +- uniden/uniden.h | 3 +- 5 files changed, 174 insertions(+), 4 deletions(-) create mode 100644 uniden/bc898.c diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index b2d0ecfc0..681b541cc 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -275,6 +275,7 @@ #define RIG_MODEL_BCT8 RIG_MAKE_MODEL(RIG_UNIDEN, 9) #define RIG_MODEL_BCD396T RIG_MAKE_MODEL(RIG_UNIDEN, 10) #define RIG_MODEL_BCD996T RIG_MAKE_MODEL(RIG_UNIDEN, 11) +#define RIG_MODEL_BC898 RIG_MAKE_MODEL(RIG_UNIDEN, 12) /* * Drake diff --git a/uniden/Makefile.am b/uniden/Makefile.am index 78b7adf36..5815e2702 100644 --- a/uniden/Makefile.am +++ b/uniden/Makefile.am @@ -1,4 +1,4 @@ -UNIDENSRC = bc895.c bc245.c pro2052.c bc780.c bc250.c \ +UNIDENSRC = bc895.c bc898.c bc245.c pro2052.c bc780.c bc250.c \ bcd396t.c bcd996t.c lib_LTLIBRARIES = hamlib-uniden.la diff --git a/uniden/bc898.c b/uniden/bc898.c new file mode 100644 index 000000000..6afdbd5ca --- /dev/null +++ b/uniden/bc898.c @@ -0,0 +1,166 @@ +/* + * Hamlib Uniden backend - BC898 description + * Copyright (c) 2001-2009 by Stephane Fillod + * + * $Id: bc898.c,v 1.6 2008-05-04 14:23:54 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 "uniden.h" + + +#define BC898_MODES (RIG_MODE_AM|RIG_MODE_FM|RIG_MODE_WFM) + +#define BC898_FUNC (RIG_FUNC_MUTE) + +#define BC898_LEVEL_ALL (RIG_LEVEL_ATT|RIG_LEVEL_RAWSTR) + +#define BC898_PARM_ALL (RIG_PARM_NONE) + +#define BC898_VFO RIG_VFO_A + +#define BC898_CHANNEL_CAPS \ + UNIDEN_CHANNEL_CAPS \ + .ctcss_sql=1, \ + .dcs_sql=1 + +/* The BC898 seems to max out at 32 while 12 seems to be about minimum. */ +#define BC898_STR_CAL { 4, \ + { \ + { 0, -54 }, \ + { 12, -20 }, /* TBC */ \ + { 32, 4 }, /* TBC */ \ + { 255, 60 }, \ + } } + +static const tone_t bc898_ctcss_list[] = { + 670, 693, 719, 744, 770, 797, 825, 854, 885, 915, + 948, 974, 1000, 1035, 1072, 1109, 1148, 1188, 1230, 1273, + 1318, 1365, 1413, 1462, 1514, 1567, 1598, 1622, 1655, 1679, + 1713, 1738, 1773, 1799, 1835, 1862, 1899, 1928, 1966, 1995, + 2035, 2065, 2107, 2181, 2257, 2291, 2336, 2418, 2503, 2541, + 0 +}; + + +/* + * bc898 rig capabilities. + * + * TODO: check this with manual or web site. + * http://www.uniden.com/products/productdetail.cfm?product=BC898T&filter=Mobile + */ +const struct rig_caps bc898_caps = { +.rig_model = RIG_MODEL_BC898, +.model_name = "BC898T", +.mfg_name = "Uniden", +.version = BACKEND_VER, +.copyright = "LGPL", +.status = RIG_STATUS_UNTESTED, +.rig_type = RIG_TYPE_TRUNKSCANNER, +.ptt_type = RIG_PTT_NONE, +.dcd_type = RIG_DCD_RIG, +.port_type = RIG_PORT_SERIAL, +.serial_rate_min = 2400, +.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 = 1, +.timeout = 200, +.retry = 3, + +.has_get_func = BC898_FUNC, +.has_set_func = BC898_FUNC, +.has_get_level = BC898_LEVEL_ALL, +.has_set_level = RIG_LEVEL_SET(BC898_LEVEL_ALL), +.has_get_parm = BC898_PARM_ALL, +.has_set_parm = RIG_PARM_SET(BC898_PARM_ALL), +.level_gran = {}, /* FIXME: granularity */ +.parm_gran = {}, +.ctcss_list = bc898_ctcss_list, +.dcs_list = uniden_dcs_list, +.preamp = { RIG_DBLST_END }, +.attenuator = { 20, RIG_DBLST_END }, /* TBC */ +.max_rit = Hz(0), +.max_xit = Hz(0), +.max_ifshift = Hz(0), +.targetable_vfo = 0, +.transceive = RIG_TRN_OFF, +.bank_qty = 10, /* A..J */ +.chan_desc_sz = 0, +.str_cal = BC898_STR_CAL, + +.chan_list = { + { 1, 500, RIG_MTYPE_MEM, {BC898_CHANNEL_CAPS} }, + RIG_CHAN_END, + }, + +.rx_range_list1 = { + {MHz(25),MHz(956),BC898_MODES,-1,-1,BC898_VFO}, + RIG_FRNG_END, + }, +.tx_range_list1 = { RIG_FRNG_END, }, +.rx_range_list2 = { + /* TODO: is it really continuous coverage ? what about cellular? */ + {MHz(25),MHz(956),BC898_MODES,-1,-1,BC898_VFO}, + RIG_FRNG_END, + }, +.tx_range_list2 = { RIG_FRNG_END, }, +.tuning_steps = { + {BC898_MODES,kHz(5)}, + {BC898_MODES,kHz(6.25)}, + {BC898_MODES,kHz(12.5)}, + {BC898_MODES,kHz(25)}, + RIG_TS_END, + }, + /* mode/filter list, remember: order matters! */ +.filters = { + {RIG_MODE_AM|RIG_MODE_FM, kHz(8)}, + {RIG_MODE_WFM, kHz(230)}, + RIG_FLT_END, + }, +.priv = NULL, + +.set_freq = uniden_set_freq, +.get_freq = uniden_get_freq, +.set_mode = uniden_set_mode, +.get_mode = uniden_get_mode, +.set_mem = uniden_set_mem, +.get_mem = uniden_get_mem, +.get_dcd = uniden_get_dcd, +.get_info = uniden_get_info, +.get_level = uniden_get_level, +.set_level = uniden_set_level, +.get_channel = uniden_get_channel, +.set_channel = uniden_set_channel, + + +}; + +/* + * Function definitions below + */ + diff --git a/uniden/uniden.c b/uniden/uniden.c index 7bef4f11b..2846ef642 100644 --- a/uniden/uniden.c +++ b/uniden/uniden.c @@ -50,6 +50,7 @@ uniden_id_string_list[] = { { RIG_MODEL_BC786, "BC786D" }, { RIG_MODEL_PRO2052,"PRO2052" }, /* ?? */ { RIG_MODEL_BCT8, "BCT8" }, /* ?? */ + { RIG_MODEL_BC898, "BC898T" }, /* TBC */ { RIG_MODEL_NONE, NULL }, /* end marker */ }; @@ -59,7 +60,7 @@ const tone_t uniden_ctcss_list[] = { 948, 974, 1000, 1035, 1072, 1109, 1148, 1188, 1230, 1273, 1318, 1365, 1413, 1462, 1514, 1567, 1622, 1679, 1738, 1799, 1862, 1928, 2035, 2107, 2181, 2257, 2336, -2418, 2503 +2418, 2503, 0 }; const tone_t uniden_dcs_list[] = { @@ -73,7 +74,7 @@ const tone_t uniden_dcs_list[] = { 445, 446, 452, 454, 455, 462, 464, 465, 466, 503, 506, 516, 523, 526, 532, 546, 565, 606, 612, 624, 627, 631, 632, 654, 662, 664, 703, 712, 723, 731, -732, 734, 743, 754 +732, 734, 743, 754, 0 }; /* @@ -698,6 +699,7 @@ DECLARE_INITRIG_BACKEND(uniden) rig_debug(RIG_DEBUG_VERBOSE, "uniden: _init called\n"); rig_register(&bc895_caps); + rig_register(&bc898_caps); rig_register(&bc245_caps); rig_register(&bc780_caps); rig_register(&bc250_caps); diff --git a/uniden/uniden.h b/uniden/uniden.h index 5f5c95d41..616087bfb 100644 --- a/uniden/uniden.h +++ b/uniden/uniden.h @@ -1,6 +1,6 @@ /* * Hamlib Uniden backend - main header - * Copyright (c) 2001-2008 by Stephane Fillod + * Copyright (c) 2001-2009 by Stephane Fillod * * $Id: uniden.h,v 1.9 2008-10-07 18:58:08 fillods Exp $ * @@ -71,6 +71,7 @@ int uniden_set_channel(RIG *rig, const channel_t *chan); const char* uniden_get_info(RIG *rig); extern const struct rig_caps bc895_caps; +extern const struct rig_caps bc898_caps; extern const struct rig_caps bc245_caps; extern const struct rig_caps bc780_caps; extern const struct rig_caps bc250_caps;