From 0d4dbe965c587a00948b593cc8101d99d2f05463 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Wed, 27 Feb 2002 23:17:22 +0000 Subject: [PATCH] added AR5000 git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@972 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- aor/Makefile.am | 2 +- aor/aor.c | 3 ++- aor/aor.h | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/aor/Makefile.am b/aor/Makefile.am index 75a3cdd8d..5c7467828 100644 --- a/aor/Makefile.am +++ b/aor/Makefile.am @@ -1,4 +1,4 @@ -AORSRCLIST = ar8200.c ar8000.c +AORSRCLIST = ar8200.c ar8000.c ar5000.c lib_LTLIBRARIES = libhamlib-aor.la libhamlib_aor_la_SOURCES = $(AORSRCLIST) aor.c diff --git a/aor/aor.c b/aor/aor.c index 04a4b2af9..afeee31a4 100644 --- a/aor/aor.c +++ b/aor/aor.c @@ -2,7 +2,7 @@ * Hamlib AOR backend - main file * Copyright (c) 2000,2001,2002 by Stephane Fillod * - * $Id: aor.c,v 1.18 2002-01-09 23:11:16 fillods Exp $ + * $Id: aor.c,v 1.19 2002-02-27 23:17:22 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 @@ -420,6 +420,7 @@ int initrigs_aor(void *be_handle) rig_register(&ar8200_caps); rig_register(&ar8000_caps); + rig_register(&ar5000_caps); return RIG_OK; } diff --git a/aor/aor.h b/aor/aor.h index 406c3ecaf..be533ee61 100644 --- a/aor/aor.h +++ b/aor/aor.h @@ -2,7 +2,7 @@ * Hamlib AOR backend - main header * Copyright (c) 2000,2001,2002 by Stephane Fillod * - * $Id: aor.h,v 1.10 2002-01-09 23:11:16 fillods Exp $ + * $Id: aor.h,v 1.11 2002-02-27 23:17:22 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 @@ -40,6 +40,7 @@ const char *aor_get_info(RIG *rig); extern const struct rig_caps ar8200_caps; extern const struct rig_caps ar8000_caps; +extern const struct rig_caps ar5000_caps; extern BACKEND_EXPORT(int) initrigs_aor(void *be_handle);