Update LGPL header in Flexradio source files.

TNX to Lucian Laga, YO6PLB, for the notification.
Hamlib-1.2.15
Nate Bargmann 2011-08-20 18:53:49 -05:00
rodzic 12bd5bf3f2
commit 681bba4844
4 zmienionych plików z 47 dodań i 50 usunięć

Wyświetl plik

@ -5,21 +5,20 @@
* Some code derived from DttSP * Some code derived from DttSP
* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 by Frank Brickle, AB2KT and Bob McGwier, N4HY * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 by Frank Brickle, AB2KT and Bob McGwier, N4HY
* *
* $Id: dttsp.c,v 1.2 2008-05-07 22:18:25 fillods Exp $
* *
* This library is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or
* it under the terms of the GNU General Public License as * modify it under the terms of the GNU Lesser General Public
* published by the Free Software Foundation; either version 2 of * License as published by the Free Software Foundation; either
* the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* GNU General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* *
*/ */
@ -453,7 +452,7 @@ int dttsp_ipc_open(RIG *rig)
rig->state.has_get_parm |= priv->tuner->state.has_get_parm; rig->state.has_get_parm |= priv->tuner->state.has_get_parm;
#endif #endif
/* Because model dummy has funky init value */ /* Because model dummy has funky init value */
if (priv->tuner_model == RIG_MODEL_DUMMY) if (priv->tuner_model == RIG_MODEL_DUMMY)
dttsp_set_freq(rig, RIG_VFO_CURR, priv->IF_center_freq); dttsp_set_freq(rig, RIG_VFO_CURR, priv->IF_center_freq);
@ -512,7 +511,7 @@ int dttsp_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
max_delta = priv->sample_rate/2 - kHz(2); max_delta = priv->sample_rate/2 - kHz(2);
sprintf_freq(fstr, freq); sprintf_freq(fstr, freq);
rig_debug(RIG_DEBUG_TRACE,"%s called: %s %s\n", rig_debug(RIG_DEBUG_TRACE,"%s called: %s %s\n",
__FUNCTION__, rig_strvfo(vfo), fstr); __FUNCTION__, rig_strvfo(vfo), fstr);
ret = rig_get_freq(priv->tuner, RIG_VFO_CURR, &tuner_freq); ret = rig_get_freq(priv->tuner, RIG_VFO_CURR, &tuner_freq);
@ -535,10 +534,10 @@ int dttsp_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
return ret; return ret;
} }
priv->rx_delta_f = freq - tuner_freq; priv->rx_delta_f = freq - tuner_freq;
sprintf_freq(fstr, tuner_freq); sprintf_freq(fstr, tuner_freq);
rig_debug(RIG_DEBUG_TRACE,"%s: tuner=%s, rx_delta=%d Hz\n", rig_debug(RIG_DEBUG_TRACE,"%s: tuner=%s, rx_delta=%d Hz\n",
__FUNCTION__, fstr, priv->rx_delta_f); __FUNCTION__, fstr, priv->rx_delta_f);
/* setRxFrequenc */ /* setRxFrequenc */
@ -591,7 +590,7 @@ int dttsp_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
if (width == RIG_PASSBAND_NORMAL) if (width == RIG_PASSBAND_NORMAL)
width = rig_passband_normal(rig, mode); width = rig_passband_normal(rig, mode);
sprintf_freq(buf, width); sprintf_freq(buf, width);
rig_debug(RIG_DEBUG_VERBOSE,"%s called: %s %s\n", rig_debug(RIG_DEBUG_VERBOSE,"%s called: %s %s\n",
__FUNCTION__, rig_strrmode(mode), buf); __FUNCTION__, rig_strrmode(mode), buf);
switch (mode) { switch (mode) {
@ -626,7 +625,7 @@ int dttsp_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
buf_len = sprintf (buf, "setFilter %d %d\n", filter_l, filter_h ); buf_len = sprintf (buf, "setFilter %d %d\n", filter_l, filter_h );
ret = send_command (rig, buf, buf_len); ret = send_command (rig, buf, buf_len);
rig_debug(RIG_DEBUG_VERBOSE,"%s: %s\n", rig_debug(RIG_DEBUG_VERBOSE,"%s: %s\n",
__FUNCTION__, buf); __FUNCTION__, buf);
return ret; return ret;
@ -677,7 +676,7 @@ int dttsp_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
char buf[32]; char buf[32];
float rxm[MAXRX][RXMETERPTS]; float rxm[MAXRX][RXMETERPTS];
rig_debug(RIG_DEBUG_VERBOSE,"%s called: %s\n",__FUNCTION__, rig_debug(RIG_DEBUG_VERBOSE,"%s called: %s\n",__FUNCTION__,
rig_strlevel(level)); rig_strlevel(level));
switch (level) { switch (level) {

Wyświetl plik

@ -2,21 +2,20 @@
* Hamlib Flexradio backend * Hamlib Flexradio backend
* Copyright (c) 2003-2007 by Stephane Fillod * Copyright (c) 2003-2007 by Stephane Fillod
* *
* $Id: flexradio.c,v 1.1 2007-11-07 19:06:44 fillods Exp $
* *
* This library is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or
* it under the terms of the GNU Library General Public License as * modify it under the terms of the GNU Lesser General Public
* published by the Free Software Foundation; either version 2 of * License as published by the Free Software Foundation; either
* the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* GNU Library General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Library General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* *
*/ */

Wyświetl plik

@ -2,21 +2,20 @@
* Hamlib FLEXRADIO backend - main header * Hamlib FLEXRADIO backend - main header
* Copyright (c) 2004-2007 by Stephane Fillod * Copyright (c) 2004-2007 by Stephane Fillod
* *
* $Id: flexradio.h,v 1.1 2007-11-07 19:06:44 fillods Exp $
* *
* This library is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or
* it under the terms of the GNU Library General Public License as * modify it under the terms of the GNU Lesser General Public
* published by the Free Software Foundation; either version 2 of * License as published by the Free Software Foundation; either
* the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* GNU Library General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Library General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* *
*/ */

Wyświetl plik

@ -3,19 +3,19 @@
* Copyright (c) 2003-2010 by Stephane Fillod * Copyright (c) 2003-2010 by Stephane Fillod
* *
* *
* This library is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or
* it under the terms of the GNU Library General Public License as * modify it under the terms of the GNU Lesser General Public
* published by the Free Software Foundation; either version 2 of * License as published by the Free Software Foundation; either
* the License, or (at your option) any later version. * version 2.1 of the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* GNU Library General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Library General Public * You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software * License along with this library; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* *
*/ */
@ -381,7 +381,7 @@ int sdr1k_set_ptt (RIG *rig, vfo_t vfo, ptt_t ptt)
{ {
return set_bit(rig, L_BAND, 6, ptt == RIG_PTT_ON); return set_bit(rig, L_BAND, 6, ptt == RIG_PTT_ON);
} }
int sdr1k_set_level (RIG *rig, vfo_t vfo, setting_t level, value_t val) int sdr1k_set_level (RIG *rig, vfo_t vfo, setting_t level, value_t val)
{ {
@ -395,7 +395,7 @@ int sdr1k_set_level (RIG *rig, vfo_t vfo, setting_t level, value_t val)
return -RIG_EINVAL; return -RIG_EINVAL;
} }
} }
int int
write_latch (RIG *rig, latch_t which, unsigned value, unsigned mask) write_latch (RIG *rig, latch_t which, unsigned value, unsigned mask)
@ -405,7 +405,7 @@ write_latch (RIG *rig, latch_t which, unsigned value, unsigned mask)
if (!(L_EXT <= which && which <= L_DDS1)) if (!(L_EXT <= which && which <= L_DDS1))
return -RIG_EINVAL; return -RIG_EINVAL;
par_lock (pport); par_lock (pport);
priv->shadow[which] = (priv->shadow[which] & ~mask) | (value & mask); priv->shadow[which] = (priv->shadow[which] & ~mask) | (value & mask);
par_write_data (pport, priv->shadow[which]); par_write_data (pport, priv->shadow[which]);
@ -450,7 +450,7 @@ int
set_bit (RIG *rig, latch_t reg, unsigned bit, unsigned state) set_bit (RIG *rig, latch_t reg, unsigned bit, unsigned state)
{ {
unsigned val; unsigned val;
val = state ? 1<<bit : 0; val = state ? 1<<bit : 0;
return write_latch (rig, reg, val, 1<<bit); return write_latch (rig, reg, val, 1<<bit);