From b107a9b116aa0bd535048bb39b3717727b46dec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Mon, 12 May 2003 22:27:19 +0000 Subject: [PATCH] new Ten-Tec models, DSP-10 and SDR-1000 git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1471 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- include/hamlib/riglist.h | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index 7e3f307f6..36ac8f8ec 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -2,7 +2,7 @@ * Hamlib Interface - list of known rigs * Copyright (c) 2000-2003 by Stephane Fillod and Frank Singleton * - * $Id: riglist.h,v 1.33 2003-03-15 23:58:41 fillods Exp $ + * $Id: riglist.h,v 1.34 2003-05-12 22:27:19 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 @@ -318,6 +318,10 @@ #define RIG_MODEL_TT538 RIG_MAKE_MODEL(RIG_TENTEC, 2) /* Jupiter */ #define RIG_MODEL_RX320 RIG_MAKE_MODEL(RIG_TENTEC, 3) #define RIG_MODEL_RX340 RIG_MAKE_MODEL(RIG_TENTEC, 4) +#define RIG_MODEL_RX350 RIG_MAKE_MODEL(RIG_TENTEC, 5) +#define RIG_MODEL_TT526 RIG_MAKE_MODEL(RIG_TENTEC, 6) /* 6N2 */ +#define RIG_MODEL_TT516 RIG_MAKE_MODEL(RIG_TENTEC, 7) /* Argonaut V */ +#define RIG_MODEL_TT565 RIG_MAKE_MODEL(RIG_TENTEC, 8) /* Orion */ /* * Alinco @@ -362,6 +366,20 @@ #define RIG_BACKEND_MICROTUNE "microtune" #define RIG_MODEL_MICROTUNE_4937 RIG_MAKE_MODEL(RIG_MICROTUNE, 1) /* eval board */ + /* + * TAPR + */ +#define RIG_TAPR 22 +#define RIG_BACKEND_TAPR "tapr" +#define RIG_MODEL_TAPR_DSP10 RIG_MAKE_MODEL(RIG_TAPR, 1) + + /* + * TAPR + */ +#define RIG_FLEXRADIO 22 +#define RIG_BACKEND_FLEXRADIO "flexradio" +#define RIG_MODEL_FLEXRADIO_SDR1000 RIG_MAKE_MODEL(RIG_FLEXRADIO, 1) + /* * TODO: @@ -407,6 +425,8 @@ typedef int rig_model_t; { RIG_RPC, RIG_BACKEND_RPC }, \ { RIG_GNURADIO, RIG_BACKEND_GNURADIO }, \ { RIG_MICROTUNE, RIG_BACKEND_MICROTUNE }, \ + { RIG_TAPR, RIG_BACKEND_TAPR }, \ + { RIG_FLEXRADIO, RIG_BACKEND_FLEXRADIO }, \ { 0, NULL }, /* end */ \ }