eye diagram thread rework + uninitialized variables fix

This commit is contained in:
Jan Käberich 2022-10-24 00:08:10 +02:00
parent 0539dea4ef
commit 70488f8262
10 changed files with 289 additions and 14 deletions

View file

@ -70,8 +70,11 @@ void Deembedding::startMeasurementDialog(DeembeddingOption *option)
}
Deembedding::Deembedding(TraceModel &tm)
: tm(tm),
: measuringOption(nullptr),
tm(tm),
measuring(false),
measurementDialog(nullptr),
measurementUI(nullptr),
sweepPoints(0)
{

View file

@ -21,6 +21,7 @@ PortExtension::PortExtension()
port = 1;
isIdeal = true;
isOpen = true;
kit = nullptr;
ui = nullptr;

View file

@ -15,6 +15,8 @@ TwoThru::TwoThru()
Z0 = 50.0;
port1 = 1;
port2 = 2;
measuring2xthru = false;
measuringDUT = false;
}
std::set<unsigned int> TwoThru::getAffectedPorts()