diff --git a/kenwood/ic10.h b/kenwood/ic10.h index 3b0cc25ab..a0298a7e3 100644 --- a/kenwood/ic10.h +++ b/kenwood/ic10.h @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - IC-10 header * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ic10.h,v 1.2 2004-06-13 12:38:41 fillods Exp $ + * $Id: ic10.h,v 1.3 2005-04-03 20:14:26 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 @@ -23,6 +23,8 @@ #ifndef _IC10_H #define _IC10_H 1 +#define IC10_VER "0.5" + int ic10_transaction (RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len); int ic10_set_vfo(RIG *rig, vfo_t vfo); int ic10_get_vfo(RIG *rig, vfo_t *vfo); diff --git a/kenwood/k2.c b/kenwood/k2.c index f79306e44..a8138c7e6 100644 --- a/kenwood/k2.c +++ b/kenwood/k2.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - Elecraft K2 description * Copyright (c) 2002-2004 by Stephane Fillod * - * $Id: k2.c,v 1.3 2004-11-08 22:46:42 fillods Exp $ + * $Id: k2.c,v 1.4 2005-04-03 20:14:26 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 @@ -55,7 +55,7 @@ const struct rig_caps k2_caps = { .rig_model = RIG_MODEL_K2, .model_name = "K2", .mfg_name = "Elecraft", -.version = "0.2.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/kenwood.h b/kenwood/kenwood.h index 04b4810a0..5803980e4 100644 --- a/kenwood/kenwood.h +++ b/kenwood/kenwood.h @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - main header * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: kenwood.h,v 1.39 2005-02-02 20:05:03 pa4tu Exp $ + * $Id: kenwood.h,v 1.40 2005-04-03 20:14:26 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 @@ -23,6 +23,8 @@ #ifndef _KENWOOD_H #define _KENWOOD_H 1 +#define BACKEND_VER "0.5" + #define EOM_KEN ";" #define EOM_TH "\r" diff --git a/kenwood/r5000.c b/kenwood/r5000.c index e389e5248..ebc85c844 100644 --- a/kenwood/r5000.c +++ b/kenwood/r5000.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - R5000 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: r5000.c,v 1.2 2004-06-13 12:38:41 fillods Exp $ + * $Id: r5000.c,v 1.3 2005-04-03 20:14:26 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 @@ -61,7 +61,7 @@ const struct rig_caps r5000_caps = { .rig_model = RIG_MODEL_R5000, .model_name = "R-5000", .mfg_name = "Kenwood", -.version = "0.4", +.version = IC10_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_RECEIVER, diff --git a/kenwood/th.h b/kenwood/th.h index d3d249c9a..0cb02e9db 100644 --- a/kenwood/th.h +++ b/kenwood/th.h @@ -1,8 +1,8 @@ /* * Hamlib Kenwood backend - TH handheld header - * Copyright (c) 2001-2003 by Stephane Fillod + * Copyright (c) 2001-2005 by Stephane Fillod * - * $Id: th.h,v 1.9 2004-11-11 17:51:53 f4dwv Exp $ + * $Id: th.h,v 1.10 2005-04-03 20:14:26 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 @@ -23,6 +23,8 @@ #define __TH_H__ 1 #include "idx_builtin.h" +#define TH_VER "0.2" + extern int th_transaction (RIG *rig, const char *cmdstr, char *data, size_t datasize); extern int th_decode_event (RIG *rig); extern int th_set_freq (RIG *rig, vfo_t vfo, freq_t freq); diff --git a/kenwood/thd7.c b/kenwood/thd7.c index c57e07f7b..7acf2d8d0 100644 --- a/kenwood/thd7.c +++ b/kenwood/thd7.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TH-D7 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: thd7.c,v 1.14 2004-09-26 08:35:04 fillods Exp $ + * $Id: thd7.c,v 1.15 2005-04-03 20:14:26 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 @@ -76,7 +76,7 @@ const struct rig_caps thd7a_caps = { .rig_model = RIG_MODEL_THD7A, .model_name = "TH-D7A", .mfg_name = "Kenwood", -.version = "0.1.2", +.version = TH_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_HANDHELD|RIG_FLAG_APRS|RIG_FLAG_TNC|RIG_FLAG_DXCLUSTER, diff --git a/kenwood/thf7.c b/kenwood/thf7.c index d102ce852..aa39ffd97 100644 --- a/kenwood/thf7.c +++ b/kenwood/thf7.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TH-F7 description * Copyright (c) 2001-2004 by Stephane Fillod * - * $Id: thf7.c,v 1.12 2004-09-26 08:35:04 fillods Exp $ + * $Id: thf7.c,v 1.13 2005-04-03 20:14:26 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 @@ -59,7 +59,7 @@ const struct rig_caps thf7e_caps = { .rig_model = RIG_MODEL_THF7E, .model_name = "TH-F7E", .mfg_name = "Kenwood", -.version = "0.1.1", +.version = TH_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_HANDHELD, diff --git a/kenwood/thg71.c b/kenwood/thg71.c index 91d82adcd..a47e28f07 100644 --- a/kenwood/thg71.c +++ b/kenwood/thg71.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TH-G71 description * Copyright (c) 2003-2005 by Stephane Fillod * - * $Id: thg71.c,v 1.16 2005-02-24 22:35:19 fillods Exp $ + * $Id: thg71.c,v 1.17 2005-04-03 20:14:26 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 @@ -78,7 +78,7 @@ const struct rig_caps thg71_caps = { .rig_model = RIG_MODEL_THG71, .model_name = "TH-G71", .mfg_name = "Kenwood", -.version = "0.1", +.version = TH_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_HANDHELD, diff --git a/kenwood/tmd700.c b/kenwood/tmd700.c index e33ca1aac..02ab2a706 100644 --- a/kenwood/tmd700.c +++ b/kenwood/tmd700.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TM-D700 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: tmd700.c,v 1.5 2004-09-26 08:35:04 fillods Exp $ + * $Id: tmd700.c,v 1.6 2005-04-03 20:14:26 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 @@ -73,7 +73,7 @@ const struct rig_caps tmd700_caps = { .rig_model = RIG_MODEL_TMD700, .model_name = "TM-D700", .mfg_name = "Kenwood", -.version = "0.1.1", +.version = TH_VER, .copyright = "LGPL", .status = RIG_STATUS_NEW, .rig_type = RIG_TYPE_MOBILE|RIG_FLAG_APRS|RIG_FLAG_TNC, diff --git a/kenwood/tmv7.c b/kenwood/tmv7.c index 4871fb38d..fee3caefe 100644 --- a/kenwood/tmv7.c +++ b/kenwood/tmv7.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TM-V7 description * Copyright (c) 2004-2005 by Stephane Fillod * - * $Id: tmv7.c,v 1.10 2005-02-24 22:35:24 fillods Exp $ + * $Id: tmv7.c,v 1.11 2005-04-03 20:14:26 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 @@ -91,7 +91,7 @@ const struct rig_caps tmv7_caps = { .rig_model = RIG_MODEL_TMV7, .model_name = "TM-V7", .mfg_name = "Kenwood", -.version = "0.2", +.version = TH_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_MOBILE, diff --git a/kenwood/ts140.c b/kenwood/ts140.c index 10c0a4230..e15ff3e44 100644 --- a/kenwood/ts140.c +++ b/kenwood/ts140.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS140 description * Copyright (c) 2000-2005 by Stephane Fillod * - * $Id: ts140.c,v 1.4 2005-02-24 22:40:28 fillods Exp $ + * $Id: ts140.c,v 1.5 2005-04-03 20:14:26 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 @@ -177,7 +177,7 @@ const struct rig_caps ts140_caps = { .rig_model = RIG_MODEL_TS140S, .model_name = "TS-140S", .mfg_name = "Kenwood", -.version = "0.3", +.version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts2000.c b/kenwood/ts2000.c index fd8afbe79..d4d0381f8 100644 --- a/kenwood/ts2000.c +++ b/kenwood/ts2000.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS2000 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts2000.c,v 1.17 2005-01-16 18:19:29 fillods Exp $ + * $Id: ts2000.c,v 1.18 2005-04-03 20:14:26 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 @@ -74,7 +74,7 @@ const struct rig_caps ts2000_caps = { .rig_model = RIG_MODEL_TS2000, .model_name = "TS-2000", .mfg_name = "Kenwood", -.version = "0.2.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts440.c b/kenwood/ts440.c index 7be51df61..a92247501 100644 --- a/kenwood/ts440.c +++ b/kenwood/ts440.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS440 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts440.c,v 1.11 2004-06-13 12:36:51 fillods Exp $ + * $Id: ts440.c,v 1.12 2005-04-03 20:14:26 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 @@ -63,7 +63,7 @@ const struct rig_caps ts440_caps = { .rig_model = RIG_MODEL_TS440, .model_name = "TS-440", .mfg_name = "Kenwood", -.version = "0.4", +.version = BACKEND_VER IC10_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts450s.c b/kenwood/ts450s.c index f4f0e0708..bb0536a61 100644 --- a/kenwood/ts450s.c +++ b/kenwood/ts450s.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS450S description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts450s.c,v 1.21 2004-11-15 16:53:57 fillods Exp $ + * $Id: ts450s.c,v 1.22 2005-04-03 20:14:26 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 @@ -268,7 +268,7 @@ const struct rig_caps ts450s_caps = { .rig_model = RIG_MODEL_TS450S, .model_name = "TS-450S", .mfg_name = "Kenwood", -.version = "0.3", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts480.c b/kenwood/ts480.c index d1b6d3286..c98a276c7 100644 --- a/kenwood/ts480.c +++ b/kenwood/ts480.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS480 description * Copyright (c) 2000-2004 by Stephane Fillod and Juergen Rinas * - * $Id: ts480.c,v 1.3 2004-12-14 07:37:58 jrinas Exp $ + * $Id: ts480.c,v 1.4 2005-04-03 20:14:26 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 @@ -375,7 +375,7 @@ const struct rig_caps ts480_caps = { .rig_model = RIG_MODEL_TS480, .model_name = "TS-480", .mfg_name = "Kenwood", - .version = "0.0.1", + .version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_NEW, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts50s.c b/kenwood/ts50s.c index 853ad9061..ab71d0fca 100644 --- a/kenwood/ts50s.c +++ b/kenwood/ts50s.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS50 description * Copyright (c) 2002-2004 by Stephane Fillod * - * $Id: ts50s.c,v 1.11 2004-09-26 08:35:04 fillods Exp $ + * $Id: ts50s.c,v 1.12 2005-04-03 20:14:26 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 @@ -54,7 +54,7 @@ const struct rig_caps ts50s_caps = { .rig_model = RIG_MODEL_TS50, .model_name = "TS-50S", .mfg_name = "Kenwood", -.version = "0.2.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_MOBILE, diff --git a/kenwood/ts570.c b/kenwood/ts570.c index ad70f274d..cf3d679c6 100644 --- a/kenwood/ts570.c +++ b/kenwood/ts570.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS570 description * Copyright (c) 2001-2005 by Stephane Fillod * - * $Id: ts570.c,v 1.22 2005-02-24 22:39:11 fillods Exp $ + * $Id: ts570.c,v 1.23 2005-04-03 20:14:26 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 @@ -251,7 +251,7 @@ const struct rig_caps ts570s_caps = { .rig_model = RIG_MODEL_TS570S, .model_name = "TS-570S", .mfg_name = "Kenwood", -.version = "0.2.2", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -424,7 +424,7 @@ const struct rig_caps ts570d_caps = { .rig_model = RIG_MODEL_TS570D, .model_name = "TS-570D", .mfg_name = "Kenwood", -.version = "0.2.2", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts680.c b/kenwood/ts680.c index 2f358e6ec..f16af30f3 100644 --- a/kenwood/ts680.c +++ b/kenwood/ts680.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS680 description * Copyright (c) 2000-2005 by Stephane Fillod * - * $Id: ts680.c,v 1.4 2005-02-24 22:35:24 fillods Exp $ + * $Id: ts680.c,v 1.5 2005-04-03 20:14:26 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 @@ -177,7 +177,7 @@ const struct rig_caps ts680s_caps = { .rig_model = RIG_MODEL_TS680S, /* Returns ID of 006. Suggest this is added to kenwood.c */ .model_name = "TS-680S", .mfg_name = "Kenwood", -.version = "0.3", +.version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts690.c b/kenwood/ts690.c index a12e5e21e..1f4c4d78c 100644 --- a/kenwood/ts690.c +++ b/kenwood/ts690.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS690 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts690.c,v 1.2 2004-11-15 16:51:30 fillods Exp $ + * $Id: ts690.c,v 1.3 2005-04-03 20:14:26 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 @@ -76,7 +76,7 @@ const struct rig_caps ts690s_caps = { .rig_model = RIG_MODEL_TS690S, .model_name = "TS-690S", .mfg_name = "Kenwood", -.version = "0.3", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts711.c b/kenwood/ts711.c index 99cc22a5a..f6f80548d 100644 --- a/kenwood/ts711.c +++ b/kenwood/ts711.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS-711 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts711.c,v 1.3 2004-06-13 12:36:51 fillods Exp $ + * $Id: ts711.c,v 1.4 2005-04-03 20:14:26 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 @@ -59,7 +59,7 @@ const struct rig_caps ts711_caps = { .rig_model = RIG_MODEL_TS711, .model_name = "TS-711", .mfg_name = "Kenwood", -.version = "0.4", +.version = BACKEND_VER IC10_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts790.c b/kenwood/ts790.c index 85f9e5e52..9e11e8e97 100644 --- a/kenwood/ts790.c +++ b/kenwood/ts790.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS-790 description * Copyright (c) 2000-2003 by Stephane Fillod * - * $Id: ts790.c,v 1.13 2003-10-01 19:31:59 fillods Exp $ + * $Id: ts790.c,v 1.14 2005-04-03 20:14:26 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 @@ -59,7 +59,7 @@ const struct rig_caps ts790_caps = { .rig_model = RIG_MODEL_TS790, .model_name = "TS-790", .mfg_name = "Kenwood", -.version = "0.2.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts811.c b/kenwood/ts811.c index fac9beeab..b63302a9a 100644 --- a/kenwood/ts811.c +++ b/kenwood/ts811.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS-811 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts811.c,v 1.3 2004-06-13 12:36:51 fillods Exp $ + * $Id: ts811.c,v 1.4 2005-04-03 20:14:26 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 @@ -59,7 +59,7 @@ const struct rig_caps ts811_caps = { .rig_model = RIG_MODEL_TS811, .model_name = "TS-811", .mfg_name = "Kenwood", -.version = "0.4", +.version = BACKEND_VER IC10_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts850.c b/kenwood/ts850.c index b669780d2..2188dc111 100644 --- a/kenwood/ts850.c +++ b/kenwood/ts850.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS850 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts850.c,v 1.18 2004-09-08 20:51:12 fillods Exp $ + * $Id: ts850.c,v 1.19 2005-04-03 20:14:26 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 @@ -82,7 +82,7 @@ const struct rig_caps ts850_caps = { .rig_model = RIG_MODEL_TS850, .model_name = "TS-850", .mfg_name = "Kenwood", -.version = "1.1", +.version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts870s.c b/kenwood/ts870s.c index b4cb213ac..a429ae2e2 100644 --- a/kenwood/ts870s.c +++ b/kenwood/ts870s.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS870S description * Copyright (c) 2000-2005 by Stephane Fillod * - * $Id: ts870s.c,v 1.44 2005-02-24 22:35:24 fillods Exp $ + * $Id: ts870s.c,v 1.45 2005-04-03 20:17: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 @@ -373,7 +373,7 @@ const struct rig_caps ts870s_caps = { .rig_model = RIG_MODEL_TS870S, .model_name = "TS-870S", .mfg_name = "Kenwood", -.version = "0.4.2", +.version = BACKEND_VER ".0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts930.c b/kenwood/ts930.c index 8001dc4d3..a720e61b9 100644 --- a/kenwood/ts930.c +++ b/kenwood/ts930.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS930 description * Copyright (c) 2000-2003 by Stephane Fillod * - * $Id: ts930.c,v 1.2 2003-10-01 19:31:59 fillods Exp $ + * $Id: ts930.c,v 1.3 2005-04-03 20:14:26 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 @@ -58,7 +58,7 @@ const struct rig_caps ts930_caps = { .rig_model = RIG_MODEL_TS930, .model_name = "TS-930", .mfg_name = "Kenwood", -.version = "0.2", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts940.c b/kenwood/ts940.c index bb81d4e8c..84a3fbc08 100644 --- a/kenwood/ts940.c +++ b/kenwood/ts940.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS940 description * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ts940.c,v 1.4 2004-06-13 12:36:51 fillods Exp $ + * $Id: ts940.c,v 1.5 2005-04-03 20:14:26 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 @@ -62,7 +62,7 @@ const struct rig_caps ts940_caps = { .rig_model = RIG_MODEL_TS940, .model_name = "TS-940S", .mfg_name = "Kenwood", -.version = "0.4", +.version = BACKEND_VER IC10_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/kenwood/ts950.c b/kenwood/ts950.c index e6552b36f..2b648cea3 100644 --- a/kenwood/ts950.c +++ b/kenwood/ts950.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS950 description * Copyright (c) 2002-2004 by Stephane Fillod * - * $Id: ts950.c,v 1.13 2004-09-26 08:35:04 fillods Exp $ + * $Id: ts950.c,v 1.14 2005-04-03 20:14:26 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 @@ -55,7 +55,7 @@ const struct rig_caps ts950sdx_caps = { .rig_model = RIG_MODEL_TS950SDX, .model_name = "TS-950SDX", .mfg_name = "Kenwood", -.version = "0.2.5", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/pcr/pcr.h b/pcr/pcr.h index 1845125d1..e781b2004 100644 --- a/pcr/pcr.h +++ b/pcr/pcr.h @@ -2,7 +2,7 @@ * Hamlib PCR backend - main header * Copyright (c) 2001-2003 by Stephane Fillod * - * $Id: pcr.h,v 1.9 2003-04-16 22:30:41 fillods Exp $ + * $Id: pcr.h,v 1.10 2005-04-03 20:18:30 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 @@ -23,6 +23,7 @@ #ifndef _PCR_H #define _PCR_H 1 +#define BACKEND_VER "0.2" struct pcr_priv_data { freq_t last_freq; diff --git a/pcr/pcr100.c b/pcr/pcr100.c index aa9133c32..5f66677f5 100644 --- a/pcr/pcr100.c +++ b/pcr/pcr100.c @@ -2,7 +2,7 @@ * Hamlib PCR backend - PCR-100 description * Copyright (c) 2001-2004 by Stephane Fillod * - * $Id: pcr100.c,v 1.5 2004-09-26 08:35:04 fillods Exp $ + * $Id: pcr100.c,v 1.6 2005-04-03 20:18:30 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 @@ -44,7 +44,7 @@ const struct rig_caps pcr100_caps = { .rig_model = RIG_MODEL_PCR100, .model_name = "IC-PCR100", .mfg_name = "Icom", -.version = "0.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_PCRECEIVER, diff --git a/pcr/pcr1000.c b/pcr/pcr1000.c index f8d4b9315..17c64a7f3 100644 --- a/pcr/pcr1000.c +++ b/pcr/pcr1000.c @@ -2,7 +2,7 @@ * Hamlib PCR backend - PCR-1000 description * Copyright (c) 2001-2003 by Stephane Fillod and Darren Hatcher * - * $Id: pcr1000.c,v 1.9 2003-10-01 19:31:59 fillods Exp $ + * $Id: pcr1000.c,v 1.10 2005-04-03 20:18:30 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 @@ -48,7 +48,7 @@ const struct rig_caps pcr1000_caps = { .rig_model = RIG_MODEL_PCR1000, .model_name = "IC-PCR1000", .mfg_name = "Icom", -.version = "0.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_PCRECEIVER, diff --git a/tentec/orion.c b/tentec/orion.c index 1c53cfed5..429517ff4 100644 --- a/tentec/orion.c +++ b/tentec/orion.c @@ -1,8 +1,8 @@ /* * Hamlib TenTenc backend - TT-565 description - * Copyright (c) 2004-2005 by Stephane Fillod + * Copyright (c) 2004-2005 by Stephane Fillod & Martin Ewing * - * $Id: orion.c,v 1.8 2005-04-03 15:54:01 fillods Exp $ + * $Id: orion.c,v 1.9 2005-04-03 20:21:25 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 @@ -209,7 +209,7 @@ const struct rig_caps tt565_caps = { .rig_model = RIG_MODEL_TT565, .model_name = "TT-565 Orion", .mfg_name = "Ten-Tec", -.version = "0.2", +.version = "0.3", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rig_type = RIG_TYPE_TRANSCEIVER, diff --git a/uniden/bc245.c b/uniden/bc245.c index 7d2904b49..28b41da5e 100644 --- a/uniden/bc245.c +++ b/uniden/bc245.c @@ -2,7 +2,7 @@ * Hamlib Uniden backend - BC245 description * Copyright (c) 2001-2004 by Stephane Fillod * - * $Id: bc245.c,v 1.1 2004-02-08 16:59:48 fillods Exp $ + * $Id: bc245.c,v 1.2 2005-04-03 20:23:19 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 @@ -49,7 +49,7 @@ const struct rig_caps bc245_caps = { .rig_model = RIG_MODEL_BC245, .model_name = "BC245xlt", .mfg_name = "Uniden", -.version = "0.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRUNKSCANNER, diff --git a/uniden/bc895.c b/uniden/bc895.c index fb868de4a..b4f7ada04 100644 --- a/uniden/bc895.c +++ b/uniden/bc895.c @@ -2,7 +2,7 @@ * Hamlib Uniden backend - BC895 description * Copyright (c) 2001-2003 by Stephane Fillod * - * $Id: bc895.c,v 1.4 2003-10-01 19:32:03 fillods Exp $ + * $Id: bc895.c,v 1.5 2005-04-03 20:23:19 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 @@ -49,7 +49,7 @@ const struct rig_caps bc895_caps = { .rig_model = RIG_MODEL_BC895, .model_name = "BC895xlt", .mfg_name = "Uniden", -.version = "0.1", +.version = BACKEND_VER, .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rig_type = RIG_TYPE_TRUNKSCANNER, diff --git a/uniden/uniden.h b/uniden/uniden.h index dedd30ea6..2726a3837 100644 --- a/uniden/uniden.h +++ b/uniden/uniden.h @@ -2,7 +2,7 @@ * Hamlib Uniden backend - main header * Copyright (c) 2001-2004 by Stephane Fillod * - * $Id: uniden.h,v 1.5 2004-02-08 16:59:48 fillods Exp $ + * $Id: uniden.h,v 1.6 2005-04-03 20:23:18 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 @@ -26,6 +26,7 @@ #include #include +#define BACKEND_VER "0.2" int uniden_set_freq(RIG *rig, vfo_t vfo, freq_t freq); int uniden_set_mem(RIG *rig, vfo_t vfo, int ch); @@ -35,4 +36,3 @@ extern const struct rig_caps bc245_caps; #endif /* _UNIDEN_H */ -