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