Update:
		New Winradio backend, G313i/G313e RX, from Simone Stoeppler.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2162 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.6rc1
Nate Bargmann, N0NB 2006-11-19 03:04:20 +00:00
rodzic fcf1546fdd
commit 6124a3cbc2
3 zmienionych plików z 5 dodań i 3 usunięć

Wyświetl plik

@ -1,6 +1,6 @@
WRSRCLIST = wr1000.c wr1500.c wr1550.c wr3100.c wr3150.c wr3500.c wr3700.c \
g303.c
g303.c g313.c
lib_LTLIBRARIES = hamlib-winradio.la
hamlib_winradio_la_SOURCES = $(WRSRCLIST) winradio.c

Wyświetl plik

@ -3,7 +3,7 @@
* Copyright (C) 2001 pab@users.sourceforge.net
* Derived from hamlib code (C) 2000-2004 Stephane Fillod.
*
* $Id: winradio.c,v 1.21 2004-04-16 20:07:47 fillods Exp $
* $Id: winradio.c,v 1.22 2006-11-19 03:04:20 n0nb 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
@ -248,6 +248,7 @@ DECLARE_INITRIG_BACKEND(winradio)
/* Receivers with DLL only available under Windows */
#ifdef _WIN32
rig_register(&g303_caps);
rig_register(&g313_caps);
#endif
return RIG_OK;

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib WiNRADiO backend - main header
* Copyright (c) 2000-2004 by Stephane Fillod
*
* $Id: winradio.h,v 1.10 2004-08-16 20:44:16 fillods Exp $
* $Id: winradio.h,v 1.11 2006-11-19 03:04:20 n0nb 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
@ -57,5 +57,6 @@ extern const struct rig_caps wr3150_caps;
extern const struct rig_caps wr3500_caps;
extern const struct rig_caps wr3700_caps;
extern const struct rig_caps g303_caps;
extern const struct rig_caps g313_caps;
#endif /* _WINRADIO_H */