From 18729f54eaf7441fe0efa2a693c3d6bcf7952cd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Tue, 26 Feb 2002 01:20:10 +0000 Subject: [PATCH] added FT-100 git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@966 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- yaesu/Makefile.am | 4 ++-- yaesu/yaesu.c | 4 ++-- yaesu/yaesu.h | 3 ++- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/yaesu/Makefile.am b/yaesu/Makefile.am index 8b612a341..dff65f5d9 100644 --- a/yaesu/Makefile.am +++ b/yaesu/Makefile.am @@ -1,8 +1,8 @@ -YAESUSRC = ft747.c ft817.c ft847.c +YAESUSRC = ft747.c ft817.c ft847.c ft100.c lib_LTLIBRARIES = libhamlib-yaesu.la libhamlib_yaesu_la_SOURCES = $(YAESUSRC) yaesu.c libhamlib_yaesu_la_LDFLAGS = -no-undefined -module -version-info 0:0:0 libhamlib_yaesu_la_LIBADD = ../src/libhamlib.la -noinst_HEADERS = ft747.h ft817.h ft847.h yaesu.h +noinst_HEADERS = ft747.h ft100.h ft817.h ft847.h yaesu.h diff --git a/yaesu/yaesu.c b/yaesu/yaesu.c index 2b7d36ad4..8145300a8 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.6 2001-12-28 20:28:04 fillods Exp $ + * $Id: yaesu.c,v 1.7 2002-02-26 01:20:10 fillods Exp $ * * * This program is free software; you can redistribute it and/or @@ -41,7 +41,6 @@ #include "misc.h" #include "yaesu.h" -#include "ft747.h" /* @@ -55,6 +54,7 @@ int initrigs_yaesu(void *be_handle) rig_register(&ft747_caps); rig_register(&ft817_caps); rig_register(&ft847_caps); + rig_register(&ft100_caps); return RIG_OK; } diff --git a/yaesu/yaesu.h b/yaesu/yaesu.h index fd2e036f6..0063a20da 100644 --- a/yaesu/yaesu.h +++ b/yaesu/yaesu.h @@ -6,7 +6,7 @@ * * Common yaesu declarations for hamlib * - * $Id: yaesu.h,v 1.9 2001-12-28 20:28:04 fillods Exp $ + * $Id: yaesu.h,v 1.10 2002-02-26 01:20:10 fillods Exp $ * * * @@ -50,6 +50,7 @@ typedef struct yaesu_cmd_set yaesu_cmd_set_t; 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 ft100_caps; extern BACKEND_EXPORT(int) initrigs_yaesu(void *be_handle);