|
@@ -276,6 +276,7 @@ static struct freq_t* mk_freqlist(int n) {
|
|
|
fl[i].squelch = Squelch();
|
|
|
fl[i].active_counter = 0;
|
|
|
fl[i].modulation = MOD_AM;
|
|
|
+ fl[i].banbel = 0;
|
|
|
}
|
|
|
return fl;
|
|
|
}
|
|
@@ -408,6 +409,9 @@ static int parse_channels(libconfig::Setting& chans, device_t* dev, int i) {
|
|
|
if (chans[j].exists("labels")) {
|
|
|
channel->freqlist[f].label = strdup(chans[j]["labels"][f]);
|
|
|
}
|
|
|
+ if (chans[j].exists("banbel")) {
|
|
|
+ channel->freqlist[f].banbel = 1;
|
|
|
+ }
|
|
|
if (chans[j].exists("modulations")) {
|
|
|
#ifdef NFM
|
|
|
if (strncmp(chans[j]["modulations"][f], "nfm", 3) == 0) {
|