From 1f01081335c144724794cc1cd155abb5646d23c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Fri, 13 Jul 2001 19:08:15 +0000 Subject: [PATCH] converted to LGPL git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@582 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- alinco/alinco.c | 38 ++++++++++++++++----------------- alinco/alinco.h | 33 ++++++++++++---------------- alinco/dx77.c | 40 +++++++++++++++++----------------- aor/aor.c | 38 ++++++++++++++++----------------- aor/aor.h | 33 ++++++++++++---------------- aor/ar8200.c | 41 +++++++++++++++++------------------ dummy/dummy.c | 41 +++++++++++++++++------------------ dummy/dummy.h | 34 ++++++++++++----------------- icom/frame.c | 38 ++++++++++++++++----------------- icom/frame.h | 33 ++++++++++++---------------- icom/ic706.c | 45 ++++++++++++++++++--------------------- icom/icall.c | 40 +++++++++++++++++----------------- icom/icom.c | 38 ++++++++++++++++----------------- icom/icom.h | 33 ++++++++++++---------------- icom/icom_defs.h | 33 ++++++++++++---------------- icom/icr8500.c | 41 +++++++++++++++++------------------ include/hamlib/rig.h | 34 +++++++++++++---------------- include/hamlib/rigclass.h | 34 +++++++++++++---------------- include/hamlib/riglist.h | 33 +++++++++++++--------------- kenwood/kenwood.c | 38 ++++++++++++++++----------------- kenwood/kenwood.h | 33 ++++++++++++---------------- kenwood/ts570.c | 42 +++++++++++++++++------------------- kenwood/ts870s.c | 41 +++++++++++++++++------------------ pcr/pcr.c | 38 ++++++++++++++++----------------- pcr/pcr.h | 33 ++++++++++++---------------- pcr/pcr100.c | 39 +++++++++++++++++---------------- pcr/pcr1000.c | 39 +++++++++++++++++---------------- src/cal.c | 36 +++++++++++++++---------------- src/cal.h | 32 ++++++++++++---------------- src/event.c | 39 ++++++++++++++++----------------- src/event.h | 33 +++++++++++++--------------- src/misc.c | 37 ++++++++++++++------------------ src/misc.h | 37 ++++++++++++++------------------ src/register.c | 39 ++++++++++++++++----------------- src/rig.c | 12 +++++++++-- src/serial.c | 39 ++++++++++++++------------------- src/serial.h | 37 ++++++++++++++------------------ tcl/hamlibtcl.c | 38 ++++++++++++++++----------------- tests/testcaps.c | 4 ++-- winradio/winradio.c | 41 +++++++++++++++++------------------ winradio/winradio.h | 35 ++++++++++++------------------ winradio/wr1000.c | 42 +++++++++++++++++------------------- winradio/wr1500.c | 42 +++++++++++++++++------------------- winradio/wr1550.c | 42 +++++++++++++++++------------------- winradio/wr3100.c | 42 +++++++++++++++++------------------- winradio/wr3150.c | 42 +++++++++++++++++------------------- winradio/wr3500.c | 42 +++++++++++++++++------------------- winradio/wr3700.c | 42 +++++++++++++++++------------------- 48 files changed, 815 insertions(+), 941 deletions(-) diff --git a/alinco/alinco.c b/alinco/alinco.c index f91f16693..016bf09e1 100644 --- a/alinco/alinco.c +++ b/alinco/alinco.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Alinco backend - main file + * Copyright (c) 2001 by Stephane Fillod * - * alinco.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Kenwood radio. + * $Id: alinco.c,v 1.6 2001-07-13 19:08:14 f4cfe 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. * - * $Id: alinco.c,v 1.5 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/alinco/alinco.h b/alinco/alinco.h index 5d64b7437..bdc205cb4 100644 --- a/alinco/alinco.h +++ b/alinco/alinco.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Alinco backend - main header + * Copyright (c) 2001 by Stephane Fillod * - * alinco.h - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Alinco radio. + * $Id: alinco.h,v 1.6 2001-07-13 19:08:14 f4cfe 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. * - * $Id: alinco.h,v 1.5 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _ALINCO_H diff --git a/alinco/dx77.c b/alinco/dx77.c index ab71a63ef..71de0f2ab 100644 --- a/alinco/dx77.c +++ b/alinco/dx77.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Alinco backend - DX77 description + * Copyright (c) 2001 by Stephane Fillod * - * dx77.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Alinco radio. + * $Id: dx77.c,v 1.3 2001-07-13 19:08:14 f4cfe 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. * - * $Id: dx77.c,v 1.2 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -93,7 +91,7 @@ rig_model: RIG_MODEL_DX77, model_name:"DX-77", mfg_name: "Alinco", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_TRANSCEIVER, ptt_type: RIG_PTT_NONE, diff --git a/aor/aor.c b/aor/aor.c index b20b1b151..a149c81b4 100644 --- a/aor/aor.c +++ b/aor/aor.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib AOR backend - main file + * Copyright (c) 2000,2001 by Stephane Fillod * - * aor.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an AOR scanner. + * $Id: aor.c,v 1.12 2001-07-13 19:08:15 f4cfe 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. * - * $Id: aor.c,v 1.11 2001-06-20 06:08:21 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/aor/aor.h b/aor/aor.h index 378c1d91a..c64215ce8 100644 --- a/aor/aor.h +++ b/aor/aor.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib AOR backend - main header + * Copyright (c) 2000,2001 by Stephane Fillod * - * aor.h - Copyright (C) 2000 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an AOR scanner. + * $Id: aor.h,v 1.6 2001-07-13 19:08:15 f4cfe 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. * - * $Id: aor.h,v 1.5 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _AOR_H diff --git a/aor/ar8200.c b/aor/ar8200.c index 69f1856e4..d0ae63b30 100644 --- a/aor/ar8200.c +++ b/aor/ar8200.c @@ -1,32 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib AOR backend - AR8200 description + * Copyright (c) 2000,2001 by Stephane Fillod * - * ar8200.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a AOR-AR8200 handheld scanner radio - * using the serial interface. + * $Id: ar8200.c,v 1.12 2001-07-13 19:08:15 f4cfe 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. * - * $Id: ar8200.c,v 1.11 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -59,7 +56,7 @@ rig_model: RIG_MODEL_AR8200, model_name:"AR8200", mfg_name: "AOR", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_SCANNER, ptt_type: RIG_PTT_NONE, diff --git a/dummy/dummy.c b/dummy/dummy.c index d3015520b..23dfbaa64 100644 --- a/dummy/dummy.c +++ b/dummy/dummy.c @@ -1,29 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Dummy backend - main file + * Copyright (c) 2001 by Stephane Fillod * - * dummy.c - Copyright (C) 2001 Stephane Fillod. + * $Id: dummy.c,v 1.15 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports dummy backend, for debugging - * purpose mainly. + * 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. * - * $Id: dummy.c,v 1.14 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -629,7 +628,7 @@ const struct rig_caps dummy_caps = { model_name: "Dummy", mfg_name: "Hamlib", version: "0.1", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_OTHER, targetable_vfo: 0, diff --git a/dummy/dummy.h b/dummy/dummy.h index 9d8be21cf..a8ecc9408 100644 --- a/dummy/dummy.h +++ b/dummy/dummy.h @@ -1,29 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Dummy backend - main header + * Copyright (c) 2001 by Stephane Fillod * - * dummy.h - Copyright (C) 2001 Stephane Fillod. + * $Id: dummy.h,v 1.3 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports dummy backend, for debugging - * purpose mainly. + * 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. * - * $Id: dummy.h,v 1.2 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _DUMMY_H diff --git a/icom/frame.c b/icom/frame.c index 05c31575b..7d7377815 100644 --- a/icom/frame.c +++ b/icom/frame.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - low level communication routines + * Copyright (c) 2000,2001 by Stephane Fillod * - * frame.c - Copyright (C) 2000,2001 Stephane Fillod - * This module provides a set of low level functions to handle the - * CI-V interface, used in serial communication to ICOM radios. + * $Id: frame.c,v 1.14 2001-07-13 19:08:15 f4cfe 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. * - * $Id: frame.c,v 1.13 2001-06-10 22:25:50 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/icom/frame.h b/icom/frame.h index 74ac4eafd..a6835b119 100644 --- a/icom/frame.h +++ b/icom/frame.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - low level communication header + * Copyright (c) 2000,2001 by Stephane Fillod * - * frame.h - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an ICOM using the "CI-V" interface. + * $Id: frame.h,v 1.8 2001-07-13 19:08:15 f4cfe 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. * - * $Id: frame.h,v 1.7 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _FRAME_H diff --git a/icom/ic706.c b/icom/ic706.c index 2def75b99..e9a940d66 100644 --- a/icom/ic706.c +++ b/icom/ic706.c @@ -1,32 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - description of IC-706 and variations + * Copyright (c) 2000,2001 by Stephane Fillod * - * ic706.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an IC-706,IC-706MKII,IC706-MKIIG - * using the "CI-V" interface. + * $Id: ic706.c,v 1.24 2001-07-13 19:08:15 f4cfe 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. * - * $Id: ic706.c,v 1.23 2001-06-26 20:55:29 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -98,7 +95,7 @@ rig_model: RIG_MODEL_IC706, model_name:"IC-706", mfg_name: "Icom", version: "0.2", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_MOBILE, ptt_type: RIG_PTT_NONE, @@ -215,7 +212,7 @@ rig_model: RIG_MODEL_IC706MKII, model_name:"IC-706MkII", mfg_name: "Icom", version: "0.2", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_MOBILE, ptt_type: RIG_PTT_NONE, @@ -337,7 +334,7 @@ rig_model: RIG_MODEL_IC706MKIIG, model_name:"IC-706MkIIG", mfg_name: "Icom", version: "0.2", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_ALPHA, rig_type: RIG_TYPE_MOBILE, ptt_type: RIG_PTT_NONE, diff --git a/icom/icall.c b/icom/icall.c index aac3681b5..578699c78 100644 --- a/icom/icall.c +++ b/icom/icall.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - Do it all Icom description for debugging + * Copyright (c) 2000,2001 by Stephane Fillod * - * icall.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a virtual do-it-all Icom (for debug purpose) - * using the "CI-V" interface. + * $Id: icall.c,v 1.7 2001-07-13 19:08:15 f4cfe 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. * - * $Id: icall.c,v 1.6 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -70,7 +68,7 @@ rig_model: RIG_MODEL_ICALL, model_name:"IC-DoItAll", mfg_name: "Icom", version: "0.2", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_ALPHA, rig_type: RIG_TYPE_TRANSCEIVER, ptt_type: RIG_PTT_RIG, diff --git a/icom/icom.c b/icom/icom.c index e2c34f00c..9a68f2d3c 100644 --- a/icom/icom.c +++ b/icom/icom.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - main file + * Copyright (c) 2000,2001 by Stephane Fillod * - * icom.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an ICOM using the "CI-V" interface. + * $Id: icom.c,v 1.35 2001-07-13 19:08:15 f4cfe 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. * - * $Id: icom.c,v 1.34 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/icom/icom.h b/icom/icom.h index 47a559df9..5ce73fe8f 100644 --- a/icom/icom.h +++ b/icom/icom.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - main header + * Copyright (c) 2000,2001 by Stephane Fillod * - * icom.h - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an ICOM using the "CI-V" interface. + * $Id: icom.h,v 1.25 2001-07-13 19:08:15 f4cfe 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. * - * $Id: icom.h,v 1.24 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _ICOM_H diff --git a/icom/icom_defs.h b/icom/icom_defs.h index 8f4093363..5a47e8433 100644 --- a/icom/icom_defs.h +++ b/icom/icom_defs.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - defines for the ICOM "CI-V" interface. + * Copyright (c) 2000,2001 by Stephane Fillod * - * icom_defs.h - Copyright (C) 2000 Stephane Fillod - * This include defines all kind of constants - * used by the ICOM "CI-V" interface. + * $Id: icom_defs.h,v 1.11 2001-07-13 19:08:15 f4cfe 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. * - * $Id: icom_defs.h,v 1.10 2001-06-26 20:55:29 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _ICOM_DEFS_H diff --git a/icom/icr8500.c b/icom/icr8500.c index acc09d5d8..aa5b66508 100644 --- a/icom/icr8500.c +++ b/icom/icr8500.c @@ -1,32 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib CI-V backend - IC-R8500 description + * Copyright (c) 2000,2001 by Stephane Fillod * - * icr8500.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an ICR-8500 - * using the "CI-V" interface. + * $Id: icr8500.c,v 1.11 2001-07-13 19:08:15 f4cfe 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. * - * $Id: icr8500.c,v 1.10 2001-06-03 19:54:05 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -64,7 +61,7 @@ rig_model: RIG_MODEL_ICR8500, model_name:"ICR-8500", mfg_name: "Icom", version: "0.2", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_RECEIVER, ptt_type: RIG_PTT_NONE, diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h index 69afb6e09..558abdeaf 100644 --- a/include/hamlib/rig.h +++ b/include/hamlib/rig.h @@ -1,27 +1,23 @@ -/* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) +/* + * Hamlib Interface - API header + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * rig.h - Copyright (C) 2000,2001 Frank Singleton and Stephane Fillod - * This program defines the Hamlib API and rig capabilities structures that - * will be used for obtaining rig capabilities. + * $Id: rig.h,v 1.46 2001-07-13 19:08:15 f4cfe 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. * - * $Id: rig.h,v 1.45 2001-07-01 11:46:16 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _RIG_H diff --git a/include/hamlib/rigclass.h b/include/hamlib/rigclass.h index 7e3620d63..006d2d100 100644 --- a/include/hamlib/rigclass.h +++ b/include/hamlib/rigclass.h @@ -1,27 +1,23 @@ -/* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) +/* + * Hamlib C++ bindings - API header + * Copyright (c) 2001 by Stephane Fillod * - * class.h - Copyright (C) 2000,2001 Frank Singleton and Stephane Fillod - * This program defines the Hamlib API and rig capabilities structures that - * will be used for obtaining rig capabilities. C++ version. + * $Id: rigclass.h,v 1.3 2001-07-13 19:08:15 f4cfe 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. * - * $Id: rigclass.h,v 1.2 2001-06-18 20:17:20 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _RIGCLASS_H diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index a87bd0bf4..06da57237 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -1,26 +1,23 @@ -/* hamlib - Copyright (C) 2000 Frank Singleton +/* + * Hamlib Interface - list of known rigs + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * riglist.h - Copyrith (C) 2000,2001 Stephane Fillod - * This include defines the list of known rigs. + * $Id: riglist.h,v 1.15 2001-07-13 19:08:15 f4cfe 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. * - * $Id: riglist.h,v 1.14 2001-06-30 23:11:53 f4cfe Exp $ * + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _RIGLIST_H diff --git a/kenwood/kenwood.c b/kenwood/kenwood.c index 4b2b9d286..fb1c643d9 100644 --- a/kenwood/kenwood.c +++ b/kenwood/kenwood.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Kenwood backend - main file + * Copyright (c) 2000,2001 by Stephane Fillod * - * kenwood.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Kenwood radio. + * $Id: kenwood.c,v 1.14 2001-07-13 19:08:15 f4cfe 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. * - * $Id: kenwood.c,v 1.13 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/kenwood/kenwood.h b/kenwood/kenwood.h index 0d85f1047..4955af518 100644 --- a/kenwood/kenwood.h +++ b/kenwood/kenwood.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Kenwood backend - main header + * Copyright (c) 2000,2001 by Stephane Fillod * - * kenwood.h - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Kenwood radio. + * $Id: kenwood.h,v 1.8 2001-07-13 19:08:15 f4cfe 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. * - * $Id: kenwood.h,v 1.7 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _KENWOOD_H diff --git a/kenwood/ts570.c b/kenwood/ts570.c index ab70cc79f..4548806b2 100644 --- a/kenwood/ts570.c +++ b/kenwood/ts570.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Kenwood backend - TS570 description + * Copyright (c) 2001 by Stephane Fillod * - * ts570.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Kenwood radio - * using the serial interface. + * $Id: ts570.c,v 1.3 2001-07-13 19:08:15 f4cfe 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. * - * $Id: ts570.c,v 1.2 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include @@ -57,7 +55,7 @@ rig_model: RIG_MODEL_TS570S, model_name:"TS-570S", mfg_name: "Kenwood", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_TRANSCEIVER, ptt_type: RIG_PTT_RIG, @@ -217,7 +215,7 @@ rig_model: RIG_MODEL_TS570D, model_name:"TS-570D", mfg_name: "Kenwood", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_TRANSCEIVER, ptt_type: RIG_PTT_RIG, diff --git a/kenwood/ts870s.c b/kenwood/ts870s.c index 73161ac60..3a38d80f9 100644 --- a/kenwood/ts870s.c +++ b/kenwood/ts870s.c @@ -1,32 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Kenwood backend - TS870S description + * Copyright (c) 2000,2001 by Stephane Fillod * - * ts870s.c - Copyright (C) 2000,2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to a Kenwood radio - * using the serial interface. + * $Id: ts870s.c,v 1.16 2001-07-13 19:08:15 f4cfe 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. * - * $Id: ts870s.c,v 1.15 2001-07-01 11:46:17 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -64,7 +61,7 @@ rig_model: RIG_MODEL_TS870S, model_name:"TS-870S", mfg_name: "Kenwood", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_TRANSCEIVER, ptt_type: RIG_PTT_RIG, diff --git a/pcr/pcr.c b/pcr/pcr.c index fefcd28ee..fd9c04bec 100644 --- a/pcr/pcr.c +++ b/pcr/pcr.c @@ -1,31 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib PCR backend - main file + * Copyright (c) 2001 by Stephane Fillod * - * pcr.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an Icom PCR-1xxx radio. + * $Id: pcr.c,v 1.9 2001-07-13 19:08:15 f4cfe 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. * - * $Id: pcr.c,v 1.8 2001-06-20 06:08:21 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ diff --git a/pcr/pcr.h b/pcr/pcr.h index 22a2915c1..ba2892878 100644 --- a/pcr/pcr.h +++ b/pcr/pcr.h @@ -1,28 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib PCR backend - main header + * Copyright (c) 2001 by Stephane Fillod * - * pcr.h - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an ICOM using the PCR1000 protocol. + * $Id: pcr.h,v 1.4 2001-07-13 19:08:15 f4cfe 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. * - * $Id: pcr.h,v 1.3 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _PCR_H diff --git a/pcr/pcr100.c b/pcr/pcr100.c index e721b48bd..59c8fd07e 100644 --- a/pcr/pcr100.c +++ b/pcr/pcr100.c @@ -1,30 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib PCR backend - PCR-100 description + * Copyright (c) 2001 by Stephane Fillod * - * pcr100.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an Icom PCR-100. + * $Id: pcr100.c,v 1.2 2001-07-13 19:08:15 f4cfe 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. * - * $Id: pcr100.c,v 1.1 2001-06-02 17:51:19 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -54,7 +53,7 @@ rig_model: RIG_MODEL_PCR100, model_name:"IC-PCR100", mfg_name: "Icom", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_PCRECEIVER, ptt_type: RIG_PTT_NONE, diff --git a/pcr/pcr1000.c b/pcr/pcr1000.c index 9c1daa8ff..baea97056 100644 --- a/pcr/pcr1000.c +++ b/pcr/pcr1000.c @@ -1,30 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib PCR backend - PCR-1000 description + * Copyright (c) 2001 by Stephane Fillod * - * pcr1000.c - Copyright (C) 2001 Stephane Fillod - * This shared library provides an API for communicating - * via serial interface to an Icom PCR-1000. + * $Id: pcr1000.c,v 1.5 2001-07-13 19:08:15 f4cfe 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. * - * $Id: pcr1000.c,v 1.4 2001-06-02 17:53:18 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include /* Standard input/output definitions */ #include /* String function definitions */ @@ -54,7 +53,7 @@ rig_model: RIG_MODEL_PCR1000, model_name:"IC-PCR1000", mfg_name: "Icom", version: "0.1", -copyright: "GPL", +copyright: "LGPL", status: RIG_STATUS_UNTESTED, rig_type: RIG_TYPE_PCRECEIVER, ptt_type: RIG_PTT_NONE, diff --git a/src/cal.c b/src/cal.c index 2e0780cb3..00492582b 100644 --- a/src/cal.c +++ b/src/cal.c @@ -1,29 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - calibration routines + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * cal.c - Copyright (C) 2001 Stephane Fillod + * $Id: cal.c,v 1.3 2001-07-13 19:08:15 f4cfe 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. * - * $Id: cal.c,v 1.2 2001-06-20 06:08:21 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #define HAMLIB_DLL #include #include "cal.h" diff --git a/src/cal.h b/src/cal.h index 51d7bfc6b..935e37711 100644 --- a/src/cal.h +++ b/src/cal.h @@ -1,27 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - calibration header + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * cal.h - Copyright (C) 2001 Stephane Fillod + * $Id: cal.h,v 1.4 2001-07-13 19:08:15 f4cfe 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. * - * $Id: cal.h,v 1.3 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _CAL_H diff --git a/src/event.c b/src/event.c index 0e4557318..05c76448c 100644 --- a/src/event.c +++ b/src/event.c @@ -1,22 +1,23 @@ -/* hamlib - Ham Radio Control Libraries - Copyright (C) 2000,2001 Stephane Fillod and Frank Singleton - This file is part of the hamlib package. - - $Id: event.c,v 1.8 2001-06-17 21:54:31 f4cfe Exp $ - - Hamlib is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - Hamlib 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 General Public - License for more details. - - You should have received a copy of the GNU General Public License - along with sane; see the file COPYING. If not, write to the Free - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +/* + * Hamlib Interface - event handling + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton + * + * $Id: event.c,v 1.9 2001-07-13 19:08:15 f4cfe 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 diff --git a/src/event.h b/src/event.h index c64a293d5..3f4842900 100644 --- a/src/event.h +++ b/src/event.h @@ -1,28 +1,25 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - event handling header + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * event.h - (C) 2000 Stephane Fillod 2000 + * $Id: event.h,v 1.2 2001-07-13 19:08:15 f4cfe 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. * - * $Id: event.h,v 1.1 2000-10-08 21:19:26 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ - #ifndef _EVENT_H #define _EVENT_H 1 diff --git a/src/misc.c b/src/misc.c index fe61727f7..563db6a88 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1,33 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - toolbox + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * misc.c - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com), - * Stephane Fillod 2000 - * Provides useful routines for data handling, used by backend - * as well as by the frontend. + * $Id: misc.c,v 1.9 2001-07-13 19:08:15 f4cfe Exp $ * - * $Id: misc.c,v 1.8 2001-06-15 07:08:37 f4cfe 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifdef HAVE_CONFIG_H #include "config.h" -#endif +#endif #include #include diff --git a/src/misc.h b/src/misc.h index b59ad7616..4d35cb884 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,30 +1,25 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - toolbox header + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * misc.h - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com), - * Stephane Fillod 2001 - * Provides useful routines for data handling, used by backends - * as well as by the frontend. + * $Id: misc.h,v 1.8 2001-07-13 19:08:15 f4cfe Exp $ * - * $Id: misc.h,v 1.7 2001-06-15 07:08:37 f4cfe 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ - #ifndef _MISC_H #define _MISC_H 1 diff --git a/src/register.c b/src/register.c index 228081ffc..904b2fbf8 100644 --- a/src/register.c +++ b/src/register.c @@ -1,22 +1,23 @@ -/* hamlib - Ham Radio Control Libraries - register.c - Copyright (C) 2000 Stephane Fillod and Frank Singleton - Provides registering for dynamically loadable backends. - - $Id: register.c,v 1.8 2001-07-06 08:17:48 f4cfe Exp $ - - Hamlib is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - Hamlib 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 General Public - License for more details. - - You should have received a copy of the GNU General Public License - along with sane; see the file COPYING. If not, write to the Free - Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +/* + * Hamlib Interface - provides registering for dynamically loadable backends. + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton + * + * $Id: register.c,v 1.9 2001-07-13 19:08:15 f4cfe 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 diff --git a/src/rig.c b/src/rig.c index afaa264ed..517de086a 100644 --- a/src/rig.c +++ b/src/rig.c @@ -12,7 +12,7 @@ * Hamlib Interface - main file * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * $Id: rig.c,v 1.40 2001-07-01 11:46:17 f4cfe Exp $ + * $Id: rig.c,v 1.41 2001-07-13 19:08:15 f4cfe 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 @@ -50,10 +50,18 @@ /** * \brief Hamlib release number - * \todo Should we include copyright here too? */ const char hamlib_version[] = "Hamlib version " VERSION; +/** + * \brief Hamlib copyright notice + */ +const char hamlib_copyright[] = + "Copyright (C) 2000, 2001 Stephane Fillod and Frank Singleton\n" + "This is free software; see the source for copying conditions.\n" + "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n" + "PARTICULAR PURPOSE."; + #define DEFAULT_SERIAL_PORT "/dev/ttyS0" diff --git a/src/serial.c b/src/serial.c index 2b54a5284..7a0234fc4 100644 --- a/src/serial.c +++ b/src/serial.c @@ -1,32 +1,25 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - serial communication low-level support + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton + * Parts of the PTT handling are derived from soundmodem, an excellent + * ham packet softmodem written by Thomas Sailer, HB9JNX. * - * serial.c - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com), - * Stephane Fillod 2000,2001 - * Provides useful routines for read/write serial data for communicating - * via serial interface. + * $Id: serial.c,v 1.16 2001-07-13 19:08:15 f4cfe Exp $ * - * Parts of the PTT handling are derived from soundmodem, an excellent - * ham packet softmodem written by Thomas Sailer, HB9JNX. + * 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. * - * $Id: serial.c,v 1.15 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifdef HAVE_CONFIG_H diff --git a/src/serial.h b/src/serial.h index 49a97b520..e11d838d2 100644 --- a/src/serial.h +++ b/src/serial.h @@ -1,30 +1,25 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib Interface - serial communication header + * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * serial.h - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com), - * Stephane Fillod 2000 - * Provides useful routines for read/write serial data for communicating - * via serial interface . + * $Id: serial.h,v 1.11 2001-07-13 19:08:15 f4cfe Exp $ * - * $Id: serial.h,v 1.10 2001-06-15 07:08:37 f4cfe 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ - #ifndef _SERIAL_H #define _SERIAL_H 1 diff --git a/tcl/hamlibtcl.c b/tcl/hamlibtcl.c index c61e0753d..cad329ef4 100644 --- a/tcl/hamlibtcl.c +++ b/tcl/hamlibtcl.c @@ -1,29 +1,29 @@ -/* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) +/* + * Hamlib tcl/tk bindings - main file + * Copyright (c) 2001 by Stephane Fillod * - * hamlibtcl.c - Copyright (C) 2001 Stephane Fillod - * This program defines the Hamlib API and rig capabilities structures that - * will be used for obtaining rig capabilities. TCL bindings. + * $Id: hamlibtcl.c,v 1.2 2001-07-13 19:08:15 f4cfe 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. * - * $Id: hamlibtcl.c,v 1.1 2001-06-20 06:02:56 f4cfe Exp $ + * 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. * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include diff --git a/tests/testcaps.c b/tests/testcaps.c index 394451a95..2955c4b19 100644 --- a/tests/testcaps.c +++ b/tests/testcaps.c @@ -4,7 +4,7 @@ * like the passband info.. * * - * $Id: testcaps.c,v 1.2 2001-06-04 21:17:53 f4cfe Exp $ + * $Id: testcaps.c,v 1.3 2001-07-13 19:08:15 f4cfe Exp $ * * * This program is free software; you can redistribute it and/or @@ -37,7 +37,7 @@ static char *decode_modes(rmode_t modes); int main (int argc, char *argv[]) { const struct rig_caps *caps; - int status, i; + int i; char freqbuf[20]; RIG *pbrig; diff --git a/winradio/winradio.c b/winradio/winradio.c index 858036255..b8d4a61e6 100644 --- a/winradio/winradio.c +++ b/winradio/winradio.c @@ -1,30 +1,29 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - main file for interface through /dev/winradio API + * Copyright (C) 2001 pab@users.sourceforge.net + * Derived from hamlib code (C) 2000,2001 Stephane Fillod. * - * winradio.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: winradio.c,v 1.13 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. + * 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. * - * $Id: winradio.c,v 1.12 2001-06-20 06:08:22 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ diff --git a/winradio/winradio.h b/winradio/winradio.h index 11a0d9b3e..0ea903e8d 100644 --- a/winradio/winradio.h +++ b/winradio/winradio.h @@ -1,30 +1,23 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - main header + * Copyright (c) 2000,2001 by Stephane Fillod * - * winradio.h - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: winradio.h,v 1.5 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. + * 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. * - * $Id: winradio.h,v 1.4 2001-06-15 07:08:37 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ #ifndef _WINRADIO_H diff --git a/winradio/wr1000.c b/winradio/wr1000.c index aaba102cb..07ef388fd 100644 --- a/winradio/wr1000.c +++ b/winradio/wr1000.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR1000 description + * Copyright (c) 2001 by Stephane Fillod * - * wr1000.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr1000.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR1000 capabilities. + * 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. * - * $Id: wr1000.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr1000_caps = { model_name: "WR-1000", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr1500.c b/winradio/wr1500.c index 34e7c60ca..294c28622 100644 --- a/winradio/wr1500.c +++ b/winradio/wr1500.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR1500 description + * Copyright (c) 2001 by Stephane Fillod * - * wr1500.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr1500.c,v 1.5 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR1500 capabilities. + * 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. * - * $Id: wr1500.c,v 1.4 2001-06-02 18:09:07 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr1500_caps = { model_name: "WR-1500", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr1550.c b/winradio/wr1550.c index 95d4f048c..f4a834a1d 100644 --- a/winradio/wr1550.c +++ b/winradio/wr1550.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR1550 description + * Copyright (c) 2001 by Stephane Fillod * - * wr1550.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr1550.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR1550 capabilities. + * 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. * - * $Id: wr1550.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr1550_caps = { model_name: "WR-1550", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr3100.c b/winradio/wr3100.c index f7901d680..34c351406 100644 --- a/winradio/wr3100.c +++ b/winradio/wr3100.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR3100 description + * Copyright (c) 2001 by Stephane Fillod * - * wr3100.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr3100.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR3100 capabilities. + * 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. * - * $Id: wr3100.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr3100_caps = { model_name: "WR-3100", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr3150.c b/winradio/wr3150.c index 0f877e0c5..272ff92c8 100644 --- a/winradio/wr3150.c +++ b/winradio/wr3150.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR3150 description + * Copyright (c) 2001 by Stephane Fillod * - * wr3150.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr3150.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR3150 capabilities. + * 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. * - * $Id: wr3150.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr3150_caps = { model_name: "WR-3150", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr3500.c b/winradio/wr3500.c index 869f686e9..b68c88fe7 100644 --- a/winradio/wr3500.c +++ b/winradio/wr3500.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR3500 description + * Copyright (c) 2001 by Stephane Fillod * - * wr3500.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr3500.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR3500 capabilities. + * 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. * - * $Id: wr3500.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr3500_caps = { model_name: "WR-3500", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE, diff --git a/winradio/wr3700.c b/winradio/wr3700.c index 587e789a4..9d3b65182 100644 --- a/winradio/wr3700.c +++ b/winradio/wr3700.c @@ -1,30 +1,28 @@ /* - * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) + * Hamlib WiNRADiO backend - WR3700 description + * Copyright (c) 2001 by Stephane Fillod * - * wr3700.c - Copyright (C) 2001 pab@users.sourceforge.net - * Derived from hamlib code (C) 2000,2001 Stephane Fillod. + * $Id: wr3700.c,v 1.2 2001-07-13 19:08:15 f4cfe Exp $ * - * This shared library supports winradio receivers through the - * /dev/winradio API. This file describe the WR3700 capabilities. + * 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. * - * $Id: wr3700.c,v 1.1 2001-06-02 18:06:34 f4cfe Exp $ + * 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. * - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * */ + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include #include /* Standard input/output definitions */ @@ -59,7 +57,7 @@ const struct rig_caps wr3700_caps = { model_name: "WR-3700", mfg_name: "Winradio", version: "0.6", - copyright: "GPL", + copyright: "LGPL", status: RIG_STATUS_NEW, rig_type: RIG_TYPE_PCRECEIVER, port_type: RIG_PORT_DEVICE,