git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2404 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.8
Stéphane Fillod, F8CFE 2008-09-22 21:32:38 +00:00
rodzic dc62e6dbbe
commit 657a9ac7c9
3 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -7,7 +7,7 @@ YAESUSRC = ft100.c ft747.c ft817.c ft847.c ft890.c ft900.c ft920.c \
vr5000.c ft767gx.c
## Yaesu radios that use the new Kenwood style CAT commands
NEWCATSRC = newcat.c ft450.c
NEWCATSRC = newcat.c ft450.c ft950.c
lib_LTLIBRARIES = hamlib-yaesu.la
hamlib_yaesu_la_SOURCES = $(YAESUSRC) $(NEWCATSRC) yaesu.c
@ -18,4 +18,4 @@ hamlib_yaesu_la_LIBADD = $(top_builddir)/lib/libmisc.la \
noinst_HEADERS = ft100.h ft747.h ft817.h ft847.h ft890.h ft900.h ft920.h \
ft1000mp.h ft857.h ft897.h ft990.h yaesu.h yaesu_tones.h \
ft757gx.h ft767gx.h ft450.h newcat.h
ft757gx.h ft767gx.h ft450.h ft950.h newcat.h

Wyświetl plik

@ -7,7 +7,7 @@
* via serial interface to a Yaesu rig
*
*
* $Id: yaesu.c,v 1.27 2007-11-23 03:31:26 n0nb Exp $
* $Id: yaesu.c,v 1.28 2008-09-22 21:32:38 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -89,6 +89,7 @@ DECLARE_INITRIG_BACKEND(yaesu)
rig_register(&ft890_caps);
rig_register(&ft900_caps);
rig_register(&ft920_caps);
rig_register(&ft950_caps);
rig_register(&ft990_caps);
rig_register(&ft1000d_caps);
rig_register(&ft1000mp_caps);

Wyświetl plik

@ -6,7 +6,7 @@
*
* Common yaesu declarations for hamlib
*
* $Id: yaesu.h,v 1.27 2007-11-23 03:31:26 n0nb Exp $
* $Id: yaesu.h,v 1.28 2008-09-22 21:32:38 fillods Exp $
*
*
*
@ -61,6 +61,7 @@ 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 ft950_caps;
extern const struct rig_caps ft990_caps;
extern const struct rig_caps ft1000mp_caps;
extern const struct rig_caps ft1000mpmkv_caps;