diff --git a/tentec/Makefile.am b/tentec/Makefile.am index 1e1976f7a..021fc0757 100644 --- a/tentec/Makefile.am +++ b/tentec/Makefile.am @@ -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 diff --git a/tentec/tentec.c b/tentec/tentec.c index a536f81b6..09a40ba68 100644 --- a/tentec/tentec.c +++ b/tentec/tentec.c @@ -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; } diff --git a/tentec/tentec.h b/tentec/tentec.h index 6d45994f8..19e44a837 100644 --- a/tentec/tentec.h +++ b/tentec/tentec.h @@ -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 */