mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-06 23:13:43 +00:00
different marker types for VNA/SA, added TOI measurement
This commit is contained in:
parent
398db2253d
commit
41f99148b7
6 changed files with 203 additions and 80 deletions
|
|
@ -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()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue