added IC-275 and IC-475

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@727 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2001-11-28 22:04:56 +00:00
rodzic 14a2a788ad
commit 22af4b2cd4
4 zmienionych plików z 17 dodań i 6 usunięć

Wyświetl plik

@ -1,4 +1,4 @@
ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c icall.c
ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c icall.c ic275.c ic475.c
lib_LTLIBRARIES = libhamlib-icom.la
libhamlib_icom_la_SOURCES = $(ICOMSRCLIST) icom.c frame.c

Wyświetl plik

@ -93,7 +93,7 @@ am__quote = @am__quote@
hamlibdocdir = @hamlibdocdir@
install_sh = @install_sh@
ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c icall.c
ICOMSRCLIST = ic706.c icr8500.c ic735.c ic775.c ic756.c icall.c ic275.c ic475.c
lib_LTLIBRARIES = libhamlib-icom.la
libhamlib_icom_la_SOURCES = $(ICOMSRCLIST) icom.c frame.c
@ -115,13 +115,13 @@ libhamlib_icom_a_AR = $(AR) cru
libhamlib_icom_a_DEPENDENCIES = ../src/libhamlib.la
am_libhamlib_icom_a_OBJECTS = ic706.$(OBJEXT) icr8500.$(OBJEXT) \
ic735.$(OBJEXT) ic775.$(OBJEXT) ic756.$(OBJEXT) icall.$(OBJEXT) \
icom.$(OBJEXT) frame.$(OBJEXT)
ic275.$(OBJEXT) ic475.$(OBJEXT) icom.$(OBJEXT) frame.$(OBJEXT)
libhamlib_icom_a_OBJECTS = $(am_libhamlib_icom_a_OBJECTS)
LTLIBRARIES = $(lib_LTLIBRARIES)
libhamlib_icom_la_DEPENDENCIES = ../src/libhamlib.la
am_libhamlib_icom_la_OBJECTS = ic706.lo icr8500.lo ic735.lo ic775.lo \
ic756.lo icall.lo icom.lo frame.lo
ic756.lo icall.lo ic275.lo ic475.lo icom.lo frame.lo
libhamlib_icom_la_OBJECTS = $(am_libhamlib_icom_la_OBJECTS)
DEFS = @DEFS@
@ -131,6 +131,8 @@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
depcomp = $(SHELL) $(top_srcdir)/depcomp
@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/frame.Plo $(DEPDIR)/frame.Po \
@AMDEP_TRUE@ $(DEPDIR)/ic275.Plo $(DEPDIR)/ic275.Po \
@AMDEP_TRUE@ $(DEPDIR)/ic475.Plo $(DEPDIR)/ic475.Po \
@AMDEP_TRUE@ $(DEPDIR)/ic706.Plo $(DEPDIR)/ic706.Po \
@AMDEP_TRUE@ $(DEPDIR)/ic735.Plo $(DEPDIR)/ic735.Po \
@AMDEP_TRUE@ $(DEPDIR)/ic756.Plo $(DEPDIR)/ic756.Po \
@ -234,6 +236,10 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/frame.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/frame.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic275.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic275.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic475.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic475.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic706.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic706.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ic735.Plo@am__quote@

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib CI-V backend - main file
* Copyright (c) 2000,2001 by Stephane Fillod
*
* $Id: icom.c,v 1.41 2001-10-16 19:19:46 f4cfe Exp $
* $Id: icom.c,v 1.42 2001-11-28 22:02:36 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
@ -2305,6 +2305,9 @@ int init_icom(void *be_handle)
rig_register(&icr8500_caps);
rig_register(&ic275_caps);
rig_register(&ic475_caps);
rig_register(&icall_caps);
return RIG_OK;

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib CI-V backend - main header
* Copyright (c) 2000,2001 by Stephane Fillod
*
* $Id: icom.h,v 1.30 2001-10-16 19:19:46 f4cfe Exp $
* $Id: icom.h,v 1.31 2001-11-28 22:03:09 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
@ -116,6 +116,8 @@ extern const struct rig_caps ic756pro_caps;
extern const struct rig_caps ic775_caps;
extern const struct rig_caps icr8500_caps;
extern const struct rig_caps icall_caps;
extern const struct rig_caps ic275_caps;
extern const struct rig_caps ic475_caps;
extern HAMLIB_EXPORT(rig_model_t) probe_icom(port_t *p);
extern HAMLIB_EXPORT(int) init_icom(void *be_handle);