From b96f4e2661158b7fe7ae130a20409907ec4433c4 Mon Sep 17 00:00:00 2001 From: Arash Aletayeb Date: Tue, 31 Dec 2024 12:20:07 +0330 Subject: [PATCH] Bux Fixed on mainwindow related to _dmaLog and _dmaBuffer --- developHw.pro.user | 4 ++-- mainwindow.cpp | 6 ++++-- mainwindow.h | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/developHw.pro.user b/developHw.pro.user index b3a8074..a8dfec6 100644 --- a/developHw.pro.user +++ b/developHw.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -100,7 +100,7 @@ QtProjectManager.QMakeBuildStep true - false + true false false diff --git a/mainwindow.cpp b/mainwindow.cpp index 1d0e54a..544f1e5 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1677,7 +1677,9 @@ void MainWindow::getFramePacket(QByteArray packet) _mutex.lock(); - _dmaBuffer.push_back(packet); + if(_dmaLog) + _dmaBuffer.push_back(packet); + if(_lastBuffer.size() != 0) { quint16 batchIdBuffer = ((static_cast(_lastBuffer[128])) & 0x00FF) | @@ -1991,7 +1993,7 @@ void MainWindow::logPcie(QString logPath, quint32 logCount, QLCDNumber* lcdCount qApp->processEvents(); if(_dmaBuffer.size() == 0) { - std::this_thread::sleep_for(std::chrono::milliseconds(3)); + //std::this_thread::sleep_for(std::chrono::milliseconds(3)); continue; } QByteArray temp; diff --git a/mainwindow.h b/mainwindow.h index 313da5d..e5a74b9 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -266,7 +266,7 @@ private: QString _probeRomPath = "/home/os/hardware/ProbeRom"; QString _dynContrCurvesPath = "/home/os/hardware/Develop_HardwareTest/developHw/kernelParams/DynContrCurves.csv"; - QVector _dmaBuffer; + QList _dmaBuffer; QByteArray _lastBuffer; QList _frame; QList _bufferedFrame;