new backend elektor 5/07 (SDR USB)

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2221 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.7
Stéphane Fillod, F8CFE 2007-10-07 20:31:24 +00:00
rodzic b9c2ebeaea
commit 341c3467ee
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -2,7 +2,7 @@ AM_CFLAGS = @LIBUSB_CFLAGS@
AM_CXXFLAGS = @USRP_CFLAGS@
# FIXME: compile usrp only if CXX available
KITSRCLIST = elektor304.c drt1.c dwt.c usrp.c usrp_impl.cc
KITSRCLIST = elektor304.c drt1.c dwt.c usrp.c usrp_impl.cc elektor507.c
lib_LTLIBRARIES = hamlib-kit.la
hamlib_kit_la_SOURCES = $(KITSRCLIST) kit.c

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib KIT backend - main file
* Copyright (c) 2004-2005 by Stephane Fillod
*
* $Id: kit.c,v 1.4 2006-01-09 21:40:17 fillods Exp $
* $Id: kit.c,v 1.5 2007-10-07 20:31:24 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -46,6 +46,7 @@ DECLARE_INITRIG_BACKEND(kit)
#if (defined(HAVE_LIBUSB) && defined(HAVE_USB_H)) || defined(_WIN32)
rig_register(&dwt_caps);
rig_register(&elektor507_caps);
#endif
#ifdef HAVE_USRP

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib KIT backend - main header
* Copyright (c) 2004-2005 by Stephane Fillod
*
* $Id: kit.h,v 1.3 2005-11-01 23:14:41 fillods Exp $
* $Id: kit.h,v 1.4 2007-10-07 20:31:24 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -26,6 +26,7 @@
#include <hamlib/rig.h>
extern const struct rig_caps elektor304_caps;
extern const struct rig_caps elektor507_caps;
extern const struct rig_caps drt1_caps;
extern const struct rig_caps dwt_caps;
extern const struct rig_caps usrp0_caps;