add IC-7200 and R&S ESMC

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2672 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.10
Stéphane Fillod, F8CFE 2009-03-05 15:45:28 +00:00
rodzic 0932f8a7b9
commit 28b80e4931
2 zmienionych plików z 13 dodań i 1 usunięć

Wyświetl plik

@ -60,6 +60,8 @@
%ignore RIG_BACKEND_KIT;
%ignore RIG_TUNER;
%ignore RIG_BACKEND_TUNER;
%ignore RIG_RS;
%ignore RIG_BACKEND_RS;
%ignore ROT_DUMMY;
%ignore ROT_BACKEND_DUMMY;

Wyświetl plik

@ -187,7 +187,8 @@
#define RIG_MODEL_IC756PROIII RIG_MAKE_MODEL(RIG_ICOM, 57)
#define RIG_MODEL_ICR20 RIG_MAKE_MODEL(RIG_ICOM, 58)
#define RIG_MODEL_IC7000 RIG_MAKE_MODEL(RIG_ICOM, 60)
/* next one is 61 */
#define RIG_MODEL_IC7200 RIG_MAKE_MODEL(RIG_ICOM, 61)
/* next one is 62 */
/*
* Optoelectronics (CI-V)
@ -460,6 +461,14 @@
#define RIG_BACKEND_TUNER "tuner"
#define RIG_MODEL_V4L RIG_MAKE_MODEL(RIG_TUNER, 1)
/*
* Rohde&Schwarz
*/
#define RIG_RS 27
#define RIG_BACKEND_RS "rs"
#define RIG_MODEL_ESMC RIG_MAKE_MODEL(RIG_RS, 1)
/*
* TODO:
RIG_MODEL_KWZ30, KNEISNER +DOERING
@ -504,6 +513,7 @@ typedef int rig_model_t;
{ RIG_RFT, RIG_BACKEND_RFT }, \
{ RIG_KIT, RIG_BACKEND_KIT }, \
{ RIG_TUNER, RIG_BACKEND_TUNER }, \
{ RIG_RS, RIG_BACKEND_RS }, \
{ 0, NULL }, /* end */ \
}