mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-07 07:23:43 +00:00
Additional debug output for point numbers
This commit is contained in:
parent
71b095cf2e
commit
f688aaa220
2 changed files with 15 additions and 0 deletions
|
|
@ -760,6 +760,11 @@ using namespace std;
|
|||
|
||||
void VNA::NewDatapoint(Protocol::Datapoint d)
|
||||
{
|
||||
if(d.pointNum >= settings.npoints) {
|
||||
qWarning() << "Ignoring point with too large point number (" << d.pointNum << ")";
|
||||
return;
|
||||
}
|
||||
|
||||
d = average.process(d);
|
||||
if(calMeasuring) {
|
||||
if(average.currentSweep() == averages) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue