new VR-5000 and FT1000MP's entries

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1937 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.4
Stéphane Fillod, F8CFE 2005-02-26 23:13:48 +00:00
rodzic e40ca60a02
commit 57b1781fc1
2 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -1,6 +1,7 @@
YAESUSRC = ft100.c ft747.c ft817.c ft847.c ft890.c ft900.c ft920.c \
ft1000mp.c ft857.c ft897.c ft990.c frg8800.c \
ft757gx.c ft736.c frg100.c frg9600.c ft1000d.c
ft757gx.c ft736.c frg100.c frg9600.c ft1000d.c \
vr5000.c
lib_LTLIBRARIES = hamlib-yaesu.la
hamlib_yaesu_la_SOURCES = $(YAESUSRC) yaesu.c

Wyświetl plik

@ -1,13 +1,13 @@
/*
* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
*
* yaesu.c - (C) Stephane Fillod 2001-2004
* yaesu.c - (C) Stephane Fillod 2001-2005
*
* This shared library provides an API for communicating
* via serial interface to a Yaesu rig
*
*
* $Id: yaesu.c,v 1.22 2004-08-17 20:07:20 fillods Exp $
* $Id: yaesu.c,v 1.23 2005-02-26 23:13:48 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -65,9 +65,12 @@ DECLARE_INITRIG_BACKEND(yaesu)
rig_register(&ft990_caps);
rig_register(&ft1000d_caps);
rig_register(&ft1000mp_caps);
rig_register(&ft1000mpmkv_caps);
rig_register(&ft1000mpmkvfld_caps);
rig_register(&frg100_caps);
rig_register(&frg8800_caps);
rig_register(&frg9600_caps);
rig_register(&vr5000_caps);
return RIG_OK;
}