kopia lustrzana https://github.com/Hamlib/Hamlib
Add suppress for AST broken bug in cppcheck
rodzic
8d60a82f54
commit
7bee01f785
|
@ -55,6 +55,7 @@ CHECK="\
|
|||
-D DECLARE_INITRIG_BACKEND \
|
||||
-D DECLARE_INITRROT_BACKEND \
|
||||
-D DECLARE_INITAMP_BACKEND \
|
||||
-D B230400
|
||||
-U RIG_LEVEL_LINEOUT \
|
||||
-U O_ASYNC \
|
||||
-U F_SETSIG \
|
||||
|
|
|
@ -799,6 +799,7 @@ int ar3030_get_channel(RIG *rig, channel_t *chan, int read_only)
|
|||
rig_passband_normal(rig, chan->mode);
|
||||
|
||||
|
||||
// cppcheck-suppress *
|
||||
chan->levels[LVL_ATT].i = infobuf[6] == '0' ? 0 :
|
||||
rig->caps->attenuator[infobuf[4] - '1'];
|
||||
|
||||
|
|
|
@ -809,6 +809,7 @@ const struct rig_caps ar7030_caps =
|
|||
.has_get_parm = AR7030_PARM,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -1675,6 +1675,7 @@ static int ar7030p_get_channel(RIG *rig, channel_t *chan, int read_only)
|
|||
|
||||
if (RIG_OK == rc)
|
||||
{
|
||||
// cppcheck-suppress *
|
||||
chan->levels[ LVL_SQL ].f = (float) v / 255.0;
|
||||
}
|
||||
|
||||
|
|
|
@ -83,6 +83,7 @@ const struct rig_caps icm700pro_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 8 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -96,6 +96,7 @@ const struct rig_caps icm710_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 8 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -84,6 +84,7 @@ const struct rig_caps icm802_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 8 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -84,6 +84,7 @@ const struct rig_caps icm803_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 8 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -93,6 +93,7 @@ const struct rig_caps ic2730_caps =
|
|||
.has_get_parm = IC2730_PARM_ALL,
|
||||
.has_set_parm = IC2730_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -183,6 +183,7 @@ const struct rig_caps ic7000_caps =
|
|||
.has_get_parm = IC7000_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7000_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -113,6 +113,7 @@ const struct rig_caps ic703_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -477,6 +477,7 @@ const struct rig_caps ic706mkiig_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -220,6 +220,7 @@ const struct rig_caps ic7100_caps =
|
|||
.has_get_parm = IC7100_PARM_ALL,
|
||||
.has_set_parm = IC7100_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -105,6 +105,7 @@ const struct rig_caps ic718_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -143,6 +143,7 @@ const struct rig_caps ic7200_caps =
|
|||
.has_get_parm = IC7200_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7200_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -305,6 +305,7 @@ const struct rig_caps ic7300_caps =
|
|||
.has_get_parm = IC7300_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7300_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = {.min = {.i = 0}, .max = {.i = 255}},
|
||||
[LVL_VOXDELAY] = {.min = {.i = 0}, .max = {.i = 20}, .step = {.i = 1}},
|
||||
[LVL_KEYSPD] = {.min = {.i = 6}, .max = {.i = 48}, .step = {.i = 1}},
|
||||
|
|
|
@ -142,6 +142,7 @@ const struct rig_caps ic7410_caps =
|
|||
.has_get_parm = IC7410_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7410_PARMS), /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -208,6 +208,7 @@ const struct rig_caps ic746_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_ANN,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 900 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -114,6 +114,7 @@ const struct rig_caps ic751_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -171,6 +171,7 @@ const struct rig_caps ic756_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -183,6 +183,7 @@ const struct rig_caps ic7600_caps =
|
|||
.has_get_parm = IC7600_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7600_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -181,6 +181,7 @@ const struct rig_caps ic7610_caps =
|
|||
.has_get_parm = IC7610_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7610_PARMS), /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -166,6 +166,7 @@ const struct rig_caps ic7700_caps =
|
|||
.has_get_parm = IC7700_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7700_PARMS), /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -97,6 +97,7 @@ const struct rig_caps ic78_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -169,6 +169,7 @@ const struct rig_caps ic7800_caps =
|
|||
.has_get_parm = IC7800_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC7800_PARMS), /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -175,6 +175,7 @@ const struct rig_caps ic785x_caps =
|
|||
.has_get_parm = IC785x_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(IC785x_PARMS), /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
[LVL_KEYSPD] = { .min = { .i = 6 }, .max = { .i = 48 }, .step = { .i = 1 } },
|
||||
|
|
|
@ -488,6 +488,7 @@ const struct rig_caps ic910_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
},
|
||||
|
|
|
@ -138,6 +138,7 @@ const struct rig_caps ic9100_caps =
|
|||
.has_get_parm = IC9100_PARM_ALL,
|
||||
.has_set_parm = IC9100_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_VOXDELAY] = { .min = { .i = 0 }, .max = { .i = 20 }, .step = { .i = 1 } },
|
||||
},
|
||||
|
|
|
@ -125,6 +125,7 @@ const struct rig_caps ic92d_caps =
|
|||
.has_get_parm = IC92D_PARM_ALL,
|
||||
.has_set_parm = IC92D_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -84,6 +84,7 @@ const struct rig_caps icr10_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -84,6 +84,7 @@ const struct rig_caps icr20_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -158,6 +158,7 @@ const struct rig_caps icr30_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -85,6 +85,7 @@ const struct rig_caps icr6_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -204,6 +204,7 @@ const struct rig_caps icr7100_caps =
|
|||
.has_get_parm = ICR7100_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(ICR7100_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -135,6 +135,7 @@ const struct rig_caps icr75_caps =
|
|||
.has_get_parm = ICR75_PARM_ALL,
|
||||
.has_set_parm = RIG_PARM_SET(ICR75_PARM_ALL),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_PBT_IN] = { .min = { .f = -1280 }, .max = { .f = +1280 }, .step = { .f = 15 } },
|
||||
[LVL_PBT_OUT] = { .min = { .f = -1280 }, .max = { .f = +1280 }, .step = { .f = 15 } },
|
||||
|
|
|
@ -104,6 +104,7 @@ const struct rig_caps icr8500_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_IF] = { .min = { .i = 0 }, .max = { .i = 255 }, .step = { .i = 1 } },
|
||||
},
|
||||
|
|
|
@ -137,6 +137,7 @@ const struct rig_caps icr8600_caps =
|
|||
.has_set_level = RIG_LEVEL_SET(ICR8600_LEVEL_ALL),
|
||||
.has_get_parm = ICR8600_PARM_ALL,
|
||||
.has_set_parm = RIG_PARM_SET(ICR8600_PARM_ALL),
|
||||
// cppcheck-suppress *
|
||||
.level_gran = { [LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } } },
|
||||
.parm_gran = { [PARM_TIME] = { .min = { .i = 0 }, .max = { .i = 86399} } },
|
||||
.ext_tokens = icr8600_tokens,
|
||||
|
|
|
@ -100,6 +100,7 @@ const struct rig_caps icr9000_caps =
|
|||
.has_get_parm = ICR9000_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(ICR9000_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -116,6 +116,7 @@ const struct rig_caps icr9500_caps =
|
|||
.has_get_parm = ICR9500_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(ICR9500_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -82,6 +82,7 @@ const struct rig_caps icrx7_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -101,6 +101,7 @@ const struct rig_caps id1_caps =
|
|||
.has_get_parm = ID1_PARM_ALL,
|
||||
.has_set_parm = ID1_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -109,6 +109,7 @@ const struct rig_caps id31_caps =
|
|||
.has_get_parm = ID31_PARM_ALL,
|
||||
.has_set_parm = ID31_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.extparms = icom_ext_parms,
|
||||
|
|
|
@ -113,6 +113,7 @@ const struct rig_caps id4100_caps =
|
|||
.has_get_parm = ID4100_PARM_ALL,
|
||||
.has_set_parm = ID4100_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.extparms = icom_ext_parms,
|
||||
|
|
|
@ -117,6 +117,7 @@ const struct rig_caps id51_caps =
|
|||
.has_get_parm = ID51_PARM_ALL,
|
||||
.has_set_parm = ID51_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.ext_tokens = id51_tokens,
|
||||
|
|
|
@ -113,6 +113,7 @@ const struct rig_caps id5100_caps =
|
|||
.has_get_parm = ID5100_PARM_ALL,
|
||||
.has_set_parm = ID5100_PARM_ALL,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.extparms = icom_ext_parms,
|
||||
|
|
|
@ -102,6 +102,7 @@ const struct rig_caps os456_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -94,6 +94,7 @@ const struct rig_caps os535_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -162,6 +162,7 @@ const struct rig_caps x108g_caps =
|
|||
.has_get_parm = X108G_PARMS,
|
||||
.has_set_parm = RIG_PARM_SET(X108G_PARMS),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -123,6 +123,7 @@ const struct rig_caps nrd535_caps =
|
|||
.has_get_parm = RIG_PARM_TIME,
|
||||
.has_set_parm = RIG_PARM_SET(NRD535_PARM),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_ATT] = { .min = { .i = 0 }, .max = { .i = 20 } },
|
||||
[LVL_IF] = { .min = { .i = -2000 }, .max = { .i = 2000 } },
|
||||
|
|
|
@ -121,6 +121,7 @@ const struct rig_caps nrd545_caps =
|
|||
.has_get_parm = RIG_PARM_TIME,
|
||||
.has_set_parm = RIG_PARM_SET(NRD545_PARM),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_ATT] = { .min = { .i = 0 }, .max = { .i = 20 } },
|
||||
[LVL_IF] = { .min = { .i = -2550 }, .max = { .i = 2550 }, .step = { .i = 10} },
|
||||
|
|
|
@ -205,6 +205,7 @@ const struct rig_caps k3_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_KEYSPD] = { .min = { .i = 8 }, .max = { .i = 50 }, .step = { .i = 1 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -111,6 +111,7 @@ const struct rig_caps thd7a_caps =
|
|||
.has_get_parm = THD7_PARMS,
|
||||
.has_set_parm = THD7_PARMS, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_RFPOWER] = { .min = { .i = 3 }, .max = { .i = 0 } },
|
||||
|
|
|
@ -147,6 +147,7 @@ const struct rig_caps thf6a_caps =
|
|||
.has_get_parm = THF6_PARMS,
|
||||
.has_set_parm = THF6_PARMS,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_RFPOWER] = { .min = { .i = 2 }, .max = { .i = 0 } },
|
||||
},
|
||||
|
|
|
@ -141,6 +141,7 @@ const struct rig_caps thf7e_caps =
|
|||
.has_get_parm = THF7_PARMS,
|
||||
.has_set_parm = THF7_PARMS,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_RFPOWER] = { .min = { .i = 2 }, .max = { .i = 0 } },
|
||||
},
|
||||
|
|
|
@ -112,6 +112,7 @@ const struct rig_caps thg71_caps =
|
|||
.has_get_level = THG71_LEVEL_ALL,
|
||||
.has_set_level = RIG_LEVEL_SET(THG71_LEVEL_ALL),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 5 } },
|
||||
[LVL_RFPOWER] = { .min = { .i = 3 }, .max = { .i = 0 } },
|
||||
|
|
|
@ -125,6 +125,7 @@ const struct rig_caps tmd700_caps =
|
|||
.has_get_parm = TMD700_PARMS,
|
||||
.has_set_parm = TMD700_PARMS, /* FIXME: parms */
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 7 } },
|
||||
[LVL_SQL] = { .min = { .i = 0 }, .max = { .i = 0x1f }, .step = { .f = 1. / 0x1f } },
|
||||
[LVL_RFPOWER] = { .min = { .i = 2 }, .max = { .i = 0 }, .step = { .f = 1. / 3. } },
|
||||
|
|
|
@ -91,6 +91,7 @@ const struct rig_caps pcr100_caps =
|
|||
.has_set_parm = RIG_PARM_NONE,
|
||||
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
/* XXX check this */
|
||||
[LVL_IF] = { .min = { .i = -1270 }, .max = { .i = 1270 }, .step = { .i = 10 } },
|
||||
|
|
|
@ -84,6 +84,7 @@ const struct rig_caps pcr1000_caps =
|
|||
.has_set_parm = RIG_PARM_NONE,
|
||||
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
/* XXX check this */
|
||||
[LVL_IF] = { .min = { .i = -1270 }, .max = { .i = 1270 }, .step = { .i = 10 } },
|
||||
|
|
|
@ -87,6 +87,7 @@ const struct rig_caps pcr1500_caps =
|
|||
.has_set_parm = RIG_PARM_NONE,
|
||||
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 }, .step = { .i = 1 } },
|
||||
[LVL_NR] = { .min = { .f = 0 }, .max = { .f = 16.0 }, .step = { .f = 1.0 } },
|
||||
/* XXX check this */
|
||||
|
|
|
@ -96,6 +96,7 @@ const struct rig_caps pcr2500_caps =
|
|||
.has_set_parm = RIG_PARM_NONE,
|
||||
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
/* XXX check this */
|
||||
[LVL_IF] = { .min = { .i = -1270 }, .max = { .i = 1270 }, .step = { .i = 10 } },
|
||||
|
|
|
@ -321,6 +321,7 @@ int prm80_get_channel(RIG *rig, channel_t *chan, int read_only)
|
|||
(chanstate & 0x04) ? RIG_RPT_SHIFT_PLUS : RIG_RPT_SHIFT_NONE;
|
||||
chan->flags = (chanstate & 0x08) ? RIG_CHFLAG_SKIP : 0;
|
||||
|
||||
// cppcheck-suppress *
|
||||
chan->levels[LVL_SQL].f = ((float)(hhtoi(statebuf + 6) >> 4)) / 15.;
|
||||
chan->levels[LVL_AF].f = ((float)(hhtoi(statebuf + 8) >> 4)) / 15.;
|
||||
/* same as chanstate bit 1 */
|
||||
|
|
|
@ -80,6 +80,7 @@ const struct rig_caps ra3702_caps =
|
|||
.has_get_parm = RA3702_PARM_ALL,
|
||||
.has_set_parm = RIG_PARM_SET(RA3702_PARM_ALL),
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
},
|
||||
.vfo_ops = RA3702_VFO_OPS,
|
||||
|
|
|
@ -95,6 +95,7 @@ const struct rig_caps tt550_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = {.min = {.i = 0}, .max = {.i = 65535}},
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -104,6 +104,7 @@ const struct rig_caps rx320_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 10000 } },
|
||||
[LVL_AF] = { .min = { .f = 0 }, .max = { .f = 1 }, .step = { .f = 1.0 / 64 } },
|
||||
[LVL_IF] = { .min = { .i = -2000 }, .max = { .i = 2000 }, .step = { .i = 10} },
|
||||
|
|
|
@ -94,6 +94,7 @@ const struct rig_caps v4l_caps =
|
|||
.has_set_parm = RIG_PARM_SET(V4L_PARM_ALL),
|
||||
.vfo_ops = RIG_OP_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 65535 } },
|
||||
},
|
||||
.preamp = { RIG_DBLST_END },
|
||||
|
|
|
@ -94,6 +94,7 @@ const struct rig_caps v4l2_caps =
|
|||
.has_set_parm = RIG_PARM_SET(V4L2_PARM_ALL),
|
||||
.vfo_ops = RIG_OP_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 65535 } },
|
||||
},
|
||||
.preamp = { RIG_DBLST_END },
|
||||
|
|
|
@ -637,6 +637,7 @@ int uniden_get_channel(RIG *rig, channel_t *chan, int read_only)
|
|||
/* TODO: Trunk, Delay, Recording */
|
||||
|
||||
chan->flags = (membuf[22] == 'N') ? RIG_CHFLAG_SKIP : 0;
|
||||
// cppcheck-suppress *
|
||||
chan->levels[LVL_ATT].i = (membuf[25] == 'N') ? rig->state.attenuator[0] : 0;
|
||||
sscanf(membuf + 41, "%d", &tone);
|
||||
|
||||
|
|
|
@ -87,6 +87,7 @@ const struct rig_caps wj8888_caps =
|
|||
.preamp = { RIG_DBLST_END },
|
||||
.attenuator = { RIG_DBLST_END },
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 0x7f } },
|
||||
},
|
||||
.max_rit = Hz(0),
|
||||
|
|
|
@ -769,8 +769,8 @@ int ft1000mp_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
|
|||
to_bcd(p->p_cmd, freq / 10, 8); /* store bcd format in in p_cmd */
|
||||
/* TODO -- fix 10Hz resolution -- FS */
|
||||
|
||||
rig_debug(RIG_DEBUG_TRACE,
|
||||
"%s: requested freq after conversion = %"PRIll" Hz\n", __func__,
|
||||
// cppcheck-suppress *
|
||||
rig_debug(RIG_DEBUG_TRACE, "%s: freq = %"PRIll" Hz\n", __func__,
|
||||
(int64_t)from_bcd(p->p_cmd, 8) * 10);
|
||||
|
||||
cmd = p->p_cmd; /* get native sequence */
|
||||
|
|
|
@ -76,6 +76,7 @@ const struct rig_caps ft1200_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 10 } },
|
||||
},
|
||||
|
|
|
@ -75,6 +75,7 @@ const struct rig_caps ft2000_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -74,6 +74,7 @@ const struct rig_caps ft450_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 400 }, .max = { .i = 800 }, .step = { .i = 100 } },
|
||||
},
|
||||
|
|
|
@ -75,6 +75,7 @@ const struct rig_caps ftdx5000_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -79,6 +79,7 @@ const struct rig_caps ft891_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -75,6 +75,7 @@ const struct rig_caps ft9000_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -74,6 +74,7 @@ const struct rig_caps ft950_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -80,6 +80,7 @@ const struct rig_caps ft991_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RAWSTR] = { .min = { .i = 0 }, .max = { .i = 255 } },
|
||||
[LVL_CWPITCH] = { .min = { .i = 300 }, .max = { .i = 1050 }, .step = { .i = 50 } },
|
||||
},
|
||||
|
|
|
@ -129,6 +129,7 @@ const struct rig_caps vx1700_caps =
|
|||
.has_get_parm = RIG_PARM_NONE,
|
||||
.has_set_parm = RIG_PARM_NONE,
|
||||
.level_gran = {
|
||||
// cppcheck-suppress *
|
||||
[LVL_RFPOWER] = { .min = { .i = 0 }, .max = { .i = 2 } },
|
||||
},
|
||||
.parm_gran = {},
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#ifndef RIGCTL_PARSE_H
|
||||
#define RIGCTL_PARSE_H
|
||||
|
||||
// cppcheck-suppress *
|
||||
#include <stdio.h>
|
||||
#include <hamlib/rig.h>
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue