From d80267a15256a8275f5615801517922b0681a121 Mon Sep 17 00:00:00 2001 From: "Nate Bargmann, N0NB" Date: Mon, 14 Apr 2003 03:05:32 +0000 Subject: [PATCH] 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-79ac388436b8 --- yaesu/Makefile.am | 6 +++--- yaesu/yaesu.c | 3 ++- yaesu/yaesu.h | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/yaesu/Makefile.am b/yaesu/Makefile.am index fd861633e..0987c9c9c 100644 --- a/yaesu/Makefile.am +++ b/yaesu/Makefile.am @@ -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 diff --git a/yaesu/yaesu.c b/yaesu/yaesu.c index 937ce1cc6..0af150be7 100644 --- a/yaesu/yaesu.c +++ b/yaesu/yaesu.c @@ -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); diff --git a/yaesu/yaesu.h b/yaesu/yaesu.h index e49690602..49179b871 100644 --- a/yaesu/yaesu.h +++ b/yaesu/yaesu.h @@ -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;