added GNUradio models

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1094 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Stéphane Fillod, F8CFE 2002-07-06 09:24:25 +00:00
rodzic e5c82d9bf5
commit ea7d32f79e
1 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Interface - list of known rigs * Hamlib Interface - list of known rigs
* Copyright (c) 2000,2001 by Stephane Fillod and Frank Singleton * 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 * This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as * it under the terms of the GNU Library General Public License as
@ -316,6 +316,15 @@
#define RIG_BACKEND_RPC "rpcrig" #define RIG_BACKEND_RPC "rpcrig"
#define RIG_MODEL_RPC RIG_MAKE_MODEL(RIG_RPC, 1) #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: * TODO:
RIG_MODEL_KWZ30, KNEISNER +DOERING RIG_MODEL_KWZ30, KNEISNER +DOERING
@ -347,6 +356,7 @@ typedef int rig_model_t;
{ RIG_ALINCO, RIG_BACKEND_ALINCO }, \ { RIG_ALINCO, RIG_BACKEND_ALINCO }, \
{ RIG_KACHINA, RIG_BACKEND_KACHINA }, \ { RIG_KACHINA, RIG_BACKEND_KACHINA }, \
{ RIG_RPC, RIG_BACKEND_RPC }, \ { RIG_RPC, RIG_BACKEND_RPC }, \
{ RIG_GNURADIO, RIG_BACKEND_GNURADIO }, \
{ 0, NULL }, /* end */ \ { 0, NULL }, /* end */ \
} }