mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
allow calibration to continue with missing measurements (better than doing nothing)
This commit is contained in:
parent
b9e4117db1
commit
5fd77343ac
|
|
@ -356,7 +356,6 @@ void Calibration::correctMeasurement(DeviceDriver::VNAMeasurement &d)
|
||||||
auto name = "S"+QString::number(pRcv)+QString::number(pSrc);
|
auto name = "S"+QString::number(pRcv)+QString::number(pSrc);
|
||||||
if(d.measurements.count(name) == 0) {
|
if(d.measurements.count(name) == 0) {
|
||||||
qWarning() << "Missing measurement for calibration:" << name;
|
qWarning() << "Missing measurement for calibration:" << name;
|
||||||
return;
|
|
||||||
} else {
|
} else {
|
||||||
// grab measurement and remove isolation here
|
// grab measurement and remove isolation here
|
||||||
S(j,i) = d.measurements[name];
|
S(j,i) = d.measurements[name];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue