kopia lustrzana https://github.com/Hamlib/Hamlib
Show AGC Level None when there are no AGC settings for rig
https://github.com/Hamlib/Hamlib/issues/1155pull/1242/head
rodzic
f392cc4c18
commit
b38739bcab
tests
|
@ -318,6 +318,11 @@ int dumpcaps(RIG *rig, FILE *fout)
|
|||
fprintf(fout, " %d=%s", caps->agc_levels[i],
|
||||
rig_stragclevel(caps->agc_levels[i]));
|
||||
}
|
||||
|
||||
if (i == 0)
|
||||
{
|
||||
fprintf(fout, " %d=%s", RIG_AGC_NONE, rig_stragclevel(RIG_AGC_NONE));
|
||||
}
|
||||
}
|
||||
|
||||
fprintf(fout, "\n");
|
||||
|
|
Ładowanie…
Reference in New Issue