kopia lustrzana https://github.com/Hamlib/Hamlib
2003-04-13:
Updated: Makefile.am, yaesu.h, yaesu.c--addition of FT-900 backend New: ft900.h, ft900.c--basically a carbon copy of the ft890 backend. git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1440 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.1.4
rodzic
437f63747a
commit
d80267a152
|
@ -1,9 +1,9 @@
|
|||
YAESUSRC = ft100.c ft747.c ft817.c ft847.c ft890.c ft920.c ft1000mp.c
|
||||
YAESUSRC = ft100.c ft747.c ft817.c ft847.c ft890.c ft900.c ft920.c ft1000mp.c
|
||||
|
||||
lib_LTLIBRARIES = hamlib-yaesu.la
|
||||
hamlib_yaesu_la_SOURCES = $(YAESUSRC) yaesu.c
|
||||
hamlib_yaesu_la_LDFLAGS = -no-undefined -module -avoid-version
|
||||
hamlib_yaesu_la_LIBADD = $(top_builddir)/src/libhamlib.la
|
||||
|
||||
noinst_HEADERS = ft100.h ft747.h ft817.h ft847.h ft890.h ft920.h ft1000mp.h \
|
||||
yaesu.h yaesu_tones.h
|
||||
noinst_HEADERS = ft100.h ft747.h ft817.h ft847.h ft890.h ft900.h ft920.h \
|
||||
ft1000mp.h yaesu.h yaesu_tones.h
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* via serial interface to a Yaesu rig
|
||||
*
|
||||
*
|
||||
* $Id: yaesu.c,v 1.12 2003-04-07 22:42:11 fillods Exp $
|
||||
* $Id: yaesu.c,v 1.13 2003-04-14 03:05:32 n0nb Exp $
|
||||
*
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
|
@ -54,6 +54,7 @@ int initrigs_yaesu(void *be_handle)
|
|||
rig_register(&ft817_caps);
|
||||
rig_register(&ft847_caps);
|
||||
rig_register(&ft890_caps);
|
||||
rig_register(&ft900_caps);
|
||||
rig_register(&ft920_caps);
|
||||
rig_register(&ft1000mp_caps);
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* Common yaesu declarations for hamlib
|
||||
*
|
||||
* $Id: yaesu.h,v 1.14 2003-03-09 04:43:38 n0nb Exp $
|
||||
* $Id: yaesu.h,v 1.15 2003-04-14 03:05:32 n0nb Exp $
|
||||
*
|
||||
*
|
||||
*
|
||||
|
@ -52,6 +52,7 @@ extern const struct rig_caps ft747_caps;
|
|||
extern const struct rig_caps ft817_caps;
|
||||
extern const struct rig_caps ft847_caps;
|
||||
extern const struct rig_caps ft890_caps;
|
||||
extern const struct rig_caps ft900_caps;
|
||||
extern const struct rig_caps ft920_caps;
|
||||
extern const struct rig_caps ft1000mp_caps;
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue