added RX340, RX350, Jupiter and Orion

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1731 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.1
Stéphane Fillod, F8CFE 2004-05-03 22:34:14 +00:00
rodzic 6498879c50
commit 4e35852cfa
3 zmienionych plików z 14 dodań i 5 usunięć

Wyświetl plik

@ -1,4 +1,5 @@
TENTECSRCLIST = rx320.c pegasus.c argonaut.c
TENTECSRCLIST = rx320.c rx340.c rx350.c \
pegasus.c argonaut.c orion.c jupiter.c
lib_LTLIBRARIES = hamlib-tentec.la
hamlib_tentec_la_SOURCES = $(TENTECSRCLIST) tentec.c tentec2.c tt550.c

Wyświetl plik

@ -1,8 +1,8 @@
/*
* Hamlib Tentec backend - main file
* Copyright (c) 2001-2003 by Stephane Fillod
* Copyright (c) 2001-2004 by Stephane Fillod
*
* $Id: tentec.c,v 1.12 2003-11-16 17:14:44 fillods Exp $
* $Id: tentec.c,v 1.13 2004-05-03 22:34:14 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
@ -449,7 +449,11 @@ DECLARE_INITRIG_BACKEND(tentec)
rig_register(&tt550_caps);
rig_register(&tt516_caps);
rig_register(&tt565_caps);
rig_register(&tt538_caps);
rig_register(&rx320_caps);
rig_register(&rx340_caps);
rig_register(&rx350_caps);
return RIG_OK;
}

Wyświetl plik

@ -1,8 +1,8 @@
/*
* Hamlib Tentec backend - main header
* Copyright (c) 2001-2003 by Stephane Fillod
* Copyright (c) 2001-2004 by Stephane Fillod
*
* $Id: tentec.h,v 1.7 2003-11-16 17:14:44 fillods Exp $
* $Id: tentec.h,v 1.8 2004-05-03 22:34:14 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
@ -55,8 +55,12 @@ int tentec_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
const char* tentec_get_info(RIG *rig);
extern const struct rig_caps rx320_caps;
extern const struct rig_caps rx340_caps;
extern const struct rig_caps rx350_caps;
extern const struct rig_caps tt516_caps;
extern const struct rig_caps tt538_caps;
extern const struct rig_caps tt550_caps;
extern const struct rig_caps tt565_caps;
#endif /* _TENTEC_H */