mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-26 10:24:14 +01:00
Off-by-one bugfix for raw port receiver value
This commit is contained in:
parent
4caec3989e
commit
afda0e2994
|
|
@ -643,7 +643,7 @@ void LibreVNADriver::handleReceivedPacket(const Protocol::PacketInfo &packet)
|
|||
QString name = "RawPort"+QString::number(i)+"Stage"+QString::number(map.second);
|
||||
m.measurements[name] = input;
|
||||
name = "RawPort"+QString::number(i)+"Stage"+QString::number(map.second)+"Ref";
|
||||
m.measurements[name] = res->getValue(map.second, i, true);
|
||||
m.measurements[name] = res->getValue(map.second, i-1, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue