mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-10 04:37:37 +01:00
Fix bugs
This commit is contained in:
parent
7269a0ea12
commit
04823abb83
@ -162,7 +162,7 @@ private:
|
||||
SoapySDR::RangeList bandwidthRange = dev->getBandwidthRange(SOAPY_SDR_RX, channelId);
|
||||
|
||||
txtBwList = "";
|
||||
|
||||
bandwidthList.clear();
|
||||
bandwidthList.push_back(-1);
|
||||
txtBwList += "Auto";
|
||||
txtBwList += '\0';
|
||||
@ -212,7 +212,7 @@ private:
|
||||
if(config.conf["devices"][name].contains("bandwidth")) {
|
||||
uiBandwidthId = config.conf["devices"][name]["bandwidth"];
|
||||
} else if(bandwidthList.size() > 1) {
|
||||
uiBandwidthId = bandwidthList[0];
|
||||
uiBandwidthId = 0;
|
||||
}
|
||||
if (hasAgc && config.conf["devices"][name].contains("agc")) {
|
||||
agc = config.conf["devices"][name]["agc"];
|
||||
@ -234,7 +234,7 @@ private:
|
||||
i++;
|
||||
}
|
||||
if(bandwidthList.size() > 1)
|
||||
uiBandwidthId = bandwidthList[0];
|
||||
uiBandwidthId = 0;
|
||||
if (hasAgc) {
|
||||
agc = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user