From ea7d32f79ef9092a00fc73895f00f1b09a1bf5b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Sat, 6 Jul 2002 09:24:25 +0000 Subject: [PATCH] added GNUradio models git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1094 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- include/hamlib/riglist.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index b99cef769..ee6451a05 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -2,7 +2,7 @@ * Hamlib Interface - list of known rigs * Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * - * $Id: riglist.h,v 1.27 2002-06-17 20:53:21 fillods Exp $ + * $Id: riglist.h,v 1.28 2002-07-06 09:24:25 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 @@ -316,6 +316,15 @@ #define RIG_BACKEND_RPC "rpcrig" #define RIG_MODEL_RPC RIG_MAKE_MODEL(RIG_RPC, 1) + /* + * Gnuradio backend + */ +#define RIG_GNURADIO 20 +#define RIG_BACKEND_GNURADIO "gnuradio" +#define RIG_MODEL_GNURADIO RIG_MAKE_MODEL(RIG_GNURADIO, 1) /* dev model */ +#define RIG_MODEL_MC4020 RIG_MAKE_MODEL(RIG_GNURADIO, 2) + + /* * TODO: RIG_MODEL_KWZ30, KNEISNER +DOERING @@ -347,6 +356,7 @@ typedef int rig_model_t; { RIG_ALINCO, RIG_BACKEND_ALINCO }, \ { RIG_KACHINA, RIG_BACKEND_KACHINA }, \ { RIG_RPC, RIG_BACKEND_RPC }, \ + { RIG_GNURADIO, RIG_BACKEND_GNURADIO }, \ { 0, NULL }, /* end */ \ }