mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-04 22:17:31 +00:00
display error flags in statusbar (overload/unlock/unlevel)
This commit is contained in:
parent
6d6f0843e9
commit
e3f072b307
15 changed files with 89 additions and 13 deletions
|
|
@ -75,7 +75,7 @@ void TwoThru::updateGUI()
|
|||
+Unit::ToString(measurements2xthru.front().frequency, "Hz", " kMG", 4)+" to "
|
||||
+Unit::ToString(measurements2xthru.back().frequency, "Hz", " kMG", 4));
|
||||
} else {
|
||||
ui->l2xthru->setText("Not available, not de-embedding");
|
||||
ui->l2xthru->setText("Not available");
|
||||
}
|
||||
|
||||
if(measurementsDUT.size() > 0) {
|
||||
|
|
@ -83,7 +83,7 @@ void TwoThru::updateGUI()
|
|||
+Unit::ToString(measurementsDUT.front().frequency, "Hz", " kMG", 4)+" to "
|
||||
+Unit::ToString(measurementsDUT.back().frequency, "Hz", " kMG", 4));
|
||||
} else {
|
||||
ui->lDUT->setText("Not available, not de-embedding");
|
||||
ui->lDUT->setText("Not available");
|
||||
}
|
||||
|
||||
if(points.size() > 0) {
|
||||
|
|
@ -91,7 +91,7 @@ void TwoThru::updateGUI()
|
|||
+Unit::ToString(points.front().freq, "Hz", " kMG", 4)+" to "
|
||||
+Unit::ToString(points.back().freq, "Hz", " kMG", 4));
|
||||
} else {
|
||||
ui->lPoints->setText("Not available, not de-embedding");
|
||||
ui->lPoints->setText("No values calculated, not de-embedding");
|
||||
}
|
||||
|
||||
if (measurementsDUT.size() > 0 && measurements2xthru.size() > 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue