Yet more missing level defs.

pull/1332/head
George Baltz N3GB 2023-06-28 14:35:16 -04:00
rodzic 34fd238291
commit 649f09449a
2 zmienionych plików z 19 dodań i 0 usunięć

Wyświetl plik

@ -246,6 +246,14 @@ const struct rig_caps pihpsdr_caps =
RIG_FLT_END,
},
.level_gran =
{
#include "level_gran_kenwood.h"
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 30 }, .step = { .i = 1 } },
[LVL_KEYSPD] = {.min = {.i = 5}, .max = {.i = 50}, .step = {.i = 1}},
[LVL_CWPITCH] = {.min = {.i = 400}, .max = {.i = 1000}, .step = {.i = 50}},
[LVL_BKIN_DLYMS] = {.min = {.i = 0}, .max = {.i = 1000}, .step = {.i = 50}},
},
.str_cal = PIHPSDR_STR_CAL,
.priv = (void *)& ts2000_priv_caps,

Wyświetl plik

@ -1752,6 +1752,17 @@ const struct rig_caps pt8000a_caps =
{RIG_MODE_FM, kHz(6.0)},
RIG_FLT_END,
},
.level_gran =
{
#include "level_gran_kenwood.h"
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 30 }, .step = { .i = 1 } },
[LVL_KEYSPD] = {.min = {.i = 10}, .max = {.i = 60}, .step = {.i = 1}},
[LVL_CWPITCH] = {.min = {.i = 400}, .max = {.i = 1000}, .step = {.i = 50}},
[LVL_BKIN_DLYMS] = {.min = {.i = 0}, .max = {.i = 1000}, .step = {.i = 50}},
[LVL_SLOPE_LOW] = {.min = {.i = 0}, .max = {.i = 2400}, .step = {.i = 10}},
[LVL_SLOPE_HIGH] = {.min = {.i = 0}, .max = {.i = 5000}, .step = {.i = 10}},
},
.priv = (void *)& ts480_priv_caps,
.rig_init = kenwood_init,
.rig_open = kenwood_open,