diff --git a/kenwood/Makefile.am b/kenwood/Makefile.am index 9e964920a..68018b2f9 100644 --- a/kenwood/Makefile.am +++ b/kenwood/Makefile.am @@ -1,7 +1,7 @@ TSSRCLIST = ts850.c ts870s.c ts570.c ts450s.c ts440.c ts950.c ts50s.c \ ts790.c thd7.c thf7.c thg71.c ts2000.c k2.c ts930.c \ - ts680.c ts690.c ts940.c ts711.c ts811.c + ts680.c ts690.c ts940.c ts711.c ts811.c ts140.c lib_LTLIBRARIES = hamlib-kenwood.la hamlib_kenwood_la_SOURCES = $(TSSRCLIST) kenwood.c th.c diff --git a/kenwood/kenwood.c b/kenwood/kenwood.c index f0818d83f..ed25f5beb 100644 --- a/kenwood/kenwood.c +++ b/kenwood/kenwood.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - main file * Copyright (c) 2000-2003 by Stephane Fillod and others * - * $Id: kenwood.c,v 1.69 2003-11-10 15:59:36 fillods Exp $ + * $Id: kenwood.c,v 1.70 2003-11-16 17:31:32 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 @@ -1492,6 +1492,7 @@ DECLARE_INITRIG_BACKEND(kenwood) rig_register(&ts950sdx_caps); rig_register(&ts50s_caps); + rig_register(&ts140_caps); rig_register(&ts440_caps); rig_register(&ts450s_caps); rig_register(&ts570d_caps); diff --git a/kenwood/kenwood.h b/kenwood/kenwood.h index 736d01545..13b41b4f0 100644 --- a/kenwood/kenwood.h +++ b/kenwood/kenwood.h @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - main header * Copyright (c) 2000-2003 by Stephane Fillod * - * $Id: kenwood.h,v 1.31 2003-11-10 15:59:36 fillods Exp $ + * $Id: kenwood.h,v 1.32 2003-11-16 17:31:32 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 @@ -82,6 +82,7 @@ int kenwood_get_trn(RIG *rig, int *trn); extern const struct rig_caps ts950sdx_caps; extern const struct rig_caps ts50s_caps; +extern const struct rig_caps ts140_caps; extern const struct rig_caps ts440_caps; extern const struct rig_caps ts450s_caps; extern const struct rig_caps ts570d_caps;