git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@966 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.3
Stéphane Fillod, F8CFE 2002-02-26 01:20:10 +00:00
rodzic fba707f23b
commit 18729f54ea
3 zmienionych plików z 6 dodań i 5 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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;
}

Wyświetl plik

@ -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);