From 6a6a5fa14a574803a2852f1680090899501b7842 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Fri, 16 Apr 2004 20:01:06 +0000 Subject: [PATCH] New backend: kit (Elektor), new Winradio model (G3) git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1716 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- include/hamlib/riglist.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index 18ccf8744..7ce2ba67d 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -2,7 +2,7 @@ * Hamlib Interface - list of known rigs * Copyright (c) 2000-2004 by Stephane Fillod and Frank Singleton * - * $Id: riglist.h,v 1.44 2004-03-20 10:25:36 fillods Exp $ + * $Id: riglist.h,v 1.45 2004-04-16 20:01:06 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 @@ -306,7 +306,7 @@ #define RIG_MODEL_TRP9000 RIG_MAKE_MODEL(RIG_SKANTI, 3) /* - * WiNRADiO/LinRADiO, by Rosetta Labs + * WiNRADiO/LinRADiO */ #define RIG_WINRADIO 15 #define RIG_BACKEND_WINRADIO "winradio" @@ -317,6 +317,7 @@ #define RIG_MODEL_WR3150 RIG_MAKE_MODEL(RIG_WINRADIO, 5) #define RIG_MODEL_WR3500 RIG_MAKE_MODEL(RIG_WINRADIO, 6) #define RIG_MODEL_WR3700 RIG_MAKE_MODEL(RIG_WINRADIO, 7) +#define RIG_MODEL_G303 RIG_MAKE_MODEL(RIG_WINRADIO, 8) /* * Ten Tec @@ -399,6 +400,13 @@ #define RIG_BACKEND_RFT "rft" #define RIG_MODEL_EKD500 RIG_MAKE_MODEL(RIG_RFT, 1) + /* + * Various kits + */ +#define RIG_KIT 25 +#define RIG_BACKEND_KIT "kit" +#define RIG_MODEL_ELEKTOR304 RIG_MAKE_MODEL(RIG_KIT, 1) + /* * TODO: @@ -446,6 +454,7 @@ typedef int rig_model_t; { RIG_TAPR, RIG_BACKEND_TAPR }, \ { RIG_FLEXRADIO, RIG_BACKEND_FLEXRADIO }, \ { RIG_RFT, RIG_BACKEND_RFT }, \ + { RIG_KIT, RIG_BACKEND_KIT }, \ { 0, NULL }, /* end */ \ }