different marker types for VNA/SA, added TOI measurement

This commit is contained in:
Jan Käberich 2020-10-23 14:12:45 +02:00
parent 398db2253d
commit 41f99148b7
6 changed files with 203 additions and 80 deletions

View file

@ -140,7 +140,7 @@ void TraceModel::clearVNAData()
void TraceModel::addVNAData(Protocol::Datapoint d)
{
for(auto t : traces) {
if (t->isLive()) {
if (t->isLive() && !t->isPaused()) {
Trace::Data td;
td.frequency = d.frequency;
switch(t->liveParameter()) {
@ -160,7 +160,7 @@ void TraceModel::addVNAData(Protocol::Datapoint d)
void TraceModel::addSAData(Protocol::SpectrumAnalyzerResult d)
{
for(auto t : traces) {
if (t->isLive()) {
if (t->isLive() && !t->isPaused()) {
Trace::Data td;
td.frequency = d.frequency;
switch(t->liveParameter()) {