STR_CAL update from P.J. "Josh" Rovero, KK1D

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2759 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.10
Stéphane Fillod, F8CFE 2009-11-02 21:26:54 +00:00
rodzic f05a963ddb
commit cfc3005308
1 zmienionych plików z 20 dodań i 16 usunięć

Wyświetl plik

@ -43,21 +43,25 @@
* Calibration via comparison with JRC NRD-525.
* Highy non-linear....
*/
#define RX320_STR_CAL { 13, { \
{ 0, -40 }, \
{ 50, -20 }, \
{ 100, -10 }, \
{ 200, -5 }, \
{ 225, -3 }, \
{ 256, 0 }, \
{ 512, 1 }, \
{ 768, 3}, \
{ 1024, 4 }, \
{ 1280, 5 }, \
{ 2560, 10 }, \
{ 5120, 20 }, \
{ 10000, 30 }, \
} }
#define RX320_STR_CAL { 17, { \
{ 0, -60 }, \
{ 10, -50 }, \
{ 20, -40 }, \
{ 30, -30 }, \
{ 40, -20 }, \
{ 50, -15 }, \
{ 100, -10 }, \
{ 200, -5 }, \
{ 225, -3 }, \
{ 256, 0 }, \
{ 512, 1 }, \
{ 768, 3}, \
{ 1024, 4 }, \
{ 1280, 5 }, \
{ 2560, 10 }, \
{ 5120, 20 }, \
{ 10000, 30 }, \
} }
/*
* rx320 receiver capabilities.
@ -101,7 +105,7 @@ const struct rig_caps rx320_caps = {
.has_set_parm = RIG_PARM_NONE,
.level_gran = {
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 10000 } },
[LVL_AF] = { .step = { .f = 1.0/64 } },
[LVL_AF] = { .min = { .f = 0 }, .max = { .f = 1 }, .step = { .f = 1.0/64 } },
[LVL_IF] = { .min = { .i = -2000 }, .max = { .i = 2000 }, .step = { .i = 10} },
[LVL_CWPITCH] = { .min = { .i = 0}, .max = { .i = 2000 }, .step = { .i = 100} }
},