git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@785 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2001-12-20 08:02:44 +00:00
rodzic 4bb22483ab
commit 96abc51cd4
3 zmienionych plików z 11 dodań i 29 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kachina backend - 505DSP description
* Copyright (c) 2001 by Stephane Fillod
*
* $Id: 505dsp.c,v 1.2 2001-10-18 17:51:08 f4cfe Exp $
* $Id: 505dsp.c,v 1.3 2001-12-20 08:02:44 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -36,7 +36,6 @@
#include <hamlib/rig.h>
#include <hamlib/riglist.h>
#include "kachina.h"
#include "tone_tbl.h"
#define K505DSP_ALL_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kachina backend - main file
* Copyright (c) 2001 by Stephane Fillod
*
* $Id: kachina.c,v 1.1 2001-08-12 22:52:44 f4cfe Exp $
* $Id: kachina.c,v 1.2 2001-12-20 08:02:44 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -34,20 +34,10 @@
#include <sys/ioctl.h>
#include <math.h>
#if defined(__CYGWIN__)
# undef HAMLIB_DLL
# include <hamlib/rig.h>
# include <serial.h>
# include <misc.h>
# include <cal.h>
# define HAMLIB_DLL
# include <hamlib/rig_dll.h>
#else
# include <hamlib/rig.h>
# include <serial.h>
# include <misc.h>
# include <cal.h>
#endif
#include <hamlib/rig.h>
#include <serial.h>
#include <misc.h>
#include <cal.h>
#include "kachina.h"

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kachina backend - main header
* Copyright (c) 2001 by Stephane Fillod
*
* $Id: kachina.h,v 1.1 2001-08-12 22:52:44 f4cfe Exp $
* $Id: kachina.h,v 1.2 2001-12-20 08:02:44 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -23,16 +23,9 @@
#ifndef _KACHINA_H
#define _KACHINA_H 1
#if defined(__CYGWIN__)
# undef HAMLIB_DLL
# include <hamlib/rig.h>
# include <cal.h>
# define HAMLIB_DLL
# include <hamlib/rig_dll.h>
#else
# include <hamlib/rig.h>
# include <cal.h>
#endif
#include <hamlib/rig.h>
#include <cal.h>
#include <tones.h>
struct kachina_priv_caps {
cal_table_t str_cal;
@ -43,7 +36,7 @@ int kachina_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
extern const struct rig_caps k505dsp_caps;
extern HAMLIB_EXPORT(int) init_kachina(void *be_handle);
extern BACKEND_EXPORT(int) init_kachina(void *be_handle);
#endif /* _KACHINA_H */