From 5dcd05082be721210ebce7b464b5d25d0b326380 Mon Sep 17 00:00:00 2001 From: Arash Aletayeb Date: Sat, 7 Dec 2024 11:28:46 +0330 Subject: [PATCH] Quantization fixed. Hardware Exception deployed rather than Sono Exception. Scenario player start/stop quick change placed temporary. --- developHw.pro.user | 4 +- .../core/lowLevelApi/register/Register.h | 1 + .../registerDefinition/MinApertureSize.h | 2 +- .../registerDefinition/RxActiveElementStep.h | 4 +- .../registerDefinition/WinOpenVal.h | 4 +- .../lowLevelApi/register/bpiFlash/BpiFlash.h | 1 + .../lowLevelApi/register/spiFlash/SpiFlash.h | 1 + .../hardware/exception/HardwareException.h | 68 ++- .../exception/HardwareExceptionTypes.h | 49 ++ main.cpp | 2 +- mainwindow.cpp | 423 +++++++++--------- mainwindow.h | 42 +- mainwindow.ui | 20 +- src/model/hardware/Hardware.cpp | 2 +- .../hardware/core/lowLevelApi/TrxBoard.cpp | 216 +++++---- .../boardsCtrlMngt/BoardsCtrlMngt.cpp | 39 +- .../register/bpiFlash/BpiFlash.cpp | 10 +- .../register/builtInTest/BuiltInTest.cpp | 2 +- .../clockDistributer/ClockDistributer.cpp | 2 +- .../register/fpgaProgram/FpgaProgram.cpp | 9 +- .../register/spiFlash/SpiFlash.cpp | 6 +- 21 files changed, 491 insertions(+), 416 deletions(-) create mode 100644 include/model/hardware/exception/HardwareExceptionTypes.h diff --git a/developHw.pro.user b/developHw.pro.user index 1110efe..5fe7745 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/include/model/hardware/core/lowLevelApi/register/Register.h b/include/model/hardware/core/lowLevelApi/register/Register.h index b9ff1ac..55fd9b7 100644 --- a/include/model/hardware/core/lowLevelApi/register/Register.h +++ b/include/model/hardware/core/lowLevelApi/register/Register.h @@ -3,6 +3,7 @@ #include "model/hardware/core/lowLevelApi/register/Field.h" #include "model/hardware/device/SonoDevice.h" +#include "model/hardware/exception/HardwareException.h" #include "QDebug" class Register diff --git a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h index 956e72f..ea0f8c0 100644 --- a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h +++ b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/MinApertureSize.h @@ -35,7 +35,7 @@ public: { QVector temp; temp.append(params->winOpenStepVal); - QVector tempQ = Calculation::qntzr(temp, 0, 16, 23, 0, true); + QVector tempQ = Calculation::qntzr(temp, 0, 8, 18, 0, true); _winOpenStepValQ = tempQ.at(0); _minApertureSizeQ = params->minApertureSize; diff --git a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h index 1cff149..913c734 100644 --- a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h +++ b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/RxActiveElementStep.h @@ -35,12 +35,12 @@ public: { QVector temp; temp.append(params->rxActiveElementStep1); - QVector tempQ = Calculation::qntzr(temp, 0, 16, 19, 0, true); + QVector tempQ = Calculation::qntzr(temp, 0, 16, 18, 0, true); _rxActiveElementStep1Q = tempQ.at(0); temp.clear(); temp.append(params->rxActiveElementStep2); - tempQ = Calculation::qntzr(temp, 0, 16, 19, 0, true); + tempQ = Calculation::qntzr(temp, 0, 16, 18, 0, true); _rxActiveElementStep2Q = tempQ.at(0); } diff --git a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h index a1bfce0..0e33242 100644 --- a/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h +++ b/include/model/hardware/core/lowLevelApi/register/beamFormer/registerDefinition/WinOpenVal.h @@ -35,12 +35,12 @@ public: { QVector temp; temp.append(params->winOpenStartVal); - QVector tempQ = Calculation::qntzr(temp, 0, 16, 12, 0, true); + QVector tempQ = Calculation::qntzr(temp, 0, 8, 8, 0, true); _winOpenStartValQ = tempQ.at(0); temp.clear(); temp.append(params->winOpenStopVal); - tempQ = Calculation::qntzr(temp, 0, 16, 12, 0, true); + tempQ = Calculation::qntzr(temp, 0, 8, 8, 0, true); _winOpenStopValQ = tempQ.at(0); } diff --git a/include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h b/include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h index b9f64d6..fcbe43e 100644 --- a/include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h +++ b/include/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.h @@ -2,6 +2,7 @@ #define BPIFLASH_H #include "model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h" +#include "model/hardware/exception/HardwareException.h" #include "model/hardware/device/SonoDevice.h" #include #include diff --git a/include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h b/include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h index 47731e4..ec3093c 100644 --- a/include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h +++ b/include/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.h @@ -2,6 +2,7 @@ #define SPIFLASH_H #include "model/hardware/core/lowLevelApi/TrxBoardUtils/PreProcessorDef.h" +#include "model/hardware/exception/HardwareException.h" #include "model/hardware/device/SonoDevice.h" #include #include diff --git a/include/model/hardware/exception/HardwareException.h b/include/model/hardware/exception/HardwareException.h index 3a11b12..9aff59a 100644 --- a/include/model/hardware/exception/HardwareException.h +++ b/include/model/hardware/exception/HardwareException.h @@ -2,52 +2,42 @@ #define HARDWAREEXCEPTION_H #include +#include -//#include "logger/ESeverityLevel.h" -#include "model/hardware/exception/HwExceptionDef.h" +#include "model/hardware/exception/HardwareExceptionTypes.h" class HardwareException : public std::exception { private: - quint32 _errId; - QString _innerMessage; + quint32 _errId; + QString _innerMessage; public: - explicit HardwareException(quint32 errId) - { - _errId = errId; - } - - explicit HardwareException(quint32 errId, QString innerMessage) - { - _errId = errId; - _innerMessage = innerMessage; - } - - const char* what() const noexcept override - { - return HwErrors::getErrorMessage(_errId).toStdString().c_str(); - } - -//ESeverityLevel::eSeverityLevel getSeverityLevel() const -//{ -//return HwErrors::getSeverityLevel(_errId); -//} - - quint32 errId() const - { - return _errId; - } - - QString getInnerMessage() const - { - return _innerMessage; - } - - QString getMessage() const - { - return HwErrors::getErrorMessage(_errId); - } + explicit HardwareException(quint32 errId) + { + _errId = errId; + } + + explicit HardwareException(quint32 errId, QString innerMessage) + { + _errId = errId; + _innerMessage = innerMessage; + } + + const char* what() const noexcept override + { + return _innerMessage.toUtf8(); + } + + QString getInnerMessage() const + { + return _innerMessage; + } + + quint32 errId() const + { + return _errId; + } }; #endif //HARDWAREEXCEPTION_H diff --git a/include/model/hardware/exception/HardwareExceptionTypes.h b/include/model/hardware/exception/HardwareExceptionTypes.h new file mode 100644 index 0000000..b99b5cf --- /dev/null +++ b/include/model/hardware/exception/HardwareExceptionTypes.h @@ -0,0 +1,49 @@ +#ifndef HARDWAREEXCEPTIONTYPES_H +#define HARDWAREEXCEPTIONTYPES_H + +#define HW_NOT_FOUND 0 +#define TRX_INIT_FAILED 1 +#define TRX_READ_FAILED 2 +#define SLAVE_PROG_FAILED 3 +#define HW_PG_BAD 4 +#define MPS_READ_FAILED 5 +#define INVAL_TRX_ID 6 +#define INVAL_MPS_ID 7 +#define PROBE_SEL_FAILED 8 +#define PROBE_READ_FAILED 9 +#define FAN_FAULT_DETECTED 10 +#define RELAY_READ_FAILED 11 +#define INVAL_RELAY_ID 12 +#define BITE_FAILED 13 +#define THSD_ERROR 14 +#define THERMAL_ERROR 15 +#define AO_ERROR 16 +#define LINE_FILT_ERROR 17 +#define DTGC_ERROR 18 +#define AFE_ERROR 19 +#define SCN_ERROR 20 +#define MPS_CURR_ERROR 21 +#define MPS_VOLT_ERROR 22 +#define STB_ERROR 23 +#define PROBE_DISCONNECT 24 //Just For Log +#define SRAM1_PARITY_ERROR 25 +#define SRAM2_PARITY_ERROR 26 +#define SCEN_PRI_ERROR 27 +#define SCEN_GT_ERROR 28 +#define SCEN_SRAM_ERROR 29 +#define SYNC_FIFO_ERROR 30 +#define SYNC_POINT_ERROR 31 +#define DINT_FIFO_ERROR 32 +#define DINT_POINT_ERROR 33 +#define EMU_DMA_ERROR 34 +#define DMA_XFER_ERROR 35 +#define MPS_HVA_HVB_CWD_ERROR 36 +#define MPS_4D_ERROR 37 +#define SCEN_START_ERROR 38 +#define SCEN_STOP_ERROR 39 +#define SRAM_CMP_ERROR 40 +#define NOT_SUPPORTED_PROBE 41 +#define UNKNOWN_PROBE 42 +#define PROBE_CRC_ERROR 43 + +#endif //HARDWAREEXCEPTIONTYPES_H diff --git a/main.cpp b/main.cpp index f0e8ee0..368e659 100644 --- a/main.cpp +++ b/main.cpp @@ -20,7 +20,7 @@ int main(int argc, char *argv[]) w.show(); return a.exec(); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } diff --git a/mainwindow.cpp b/mainwindow.cpp index 4358697..2ee064c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -13,7 +13,7 @@ MainWindow::MainWindow(QWidget* parent) this->setFixedSize(this->width(), this->height()); - _settings = new QSettings("Hasis", "HwTester"); + _settings = new QSettings("os", "HwTester"); _usd = new UltraSoundDevice(); @@ -42,7 +42,7 @@ MainWindow::MainWindow(QWidget* parent) QString::number(t.second()); _statusLogPSFile = new QFile(statusLogPSPath); - movie = new QMovie("/home/hasis/Desktop/hardware/Develop_HardwareTest/gifs/Glass lines.gif"); + movie = new QMovie("/home/os/hardware/Develop_HardwareTest/gifs/Glass lines.gif"); movie->stop(); ui->l_programming->hide(); @@ -242,7 +242,7 @@ MainWindow::MainWindow(QWidget* parent) { qDebug() << exception; } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -672,7 +672,7 @@ void MainWindow::timeout() emit frameLostCall(); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -689,12 +689,12 @@ void MainWindow::on_chk_statusLogPS_clicked(bool checked) { if(_statusLogPSFile->fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected"); } if(!_statusLogPSFile->open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open file for logging"); + throw HardwareException(TRX_READ_FAILED, "Couldn't open file for logging"); } } _statusLogEn = true; @@ -704,7 +704,7 @@ void MainWindow::on_chk_statusLogPS_clicked(bool checked) _statusLogEn = false; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -718,7 +718,7 @@ void MainWindow::catchStatusLogPS(const quint32& statLogPS) QTextStream statusLogPS(_statusLogPSFile); statusLogPS << QString::number(statLogPS, 16) << endl; } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -735,7 +735,7 @@ void MainWindow::getPrbChange() { _trx.prbState(_prb); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -764,7 +764,7 @@ void MainWindow::getPrbChange() } if(_prb->prbA.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe A eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe A eeprom has occured."); } } else @@ -777,7 +777,7 @@ void MainWindow::getPrbChange() QtConcurrent::run(this, &MainWindow::getProbeColor, Qt::red, 0); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -806,7 +806,7 @@ void MainWindow::getPrbChange() } if(_prb->prbB.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe B eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe B eeprom has occured."); } } else @@ -819,7 +819,7 @@ void MainWindow::getPrbChange() QtConcurrent::run(this, &MainWindow::getProbeColor, Qt::red, 1); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -848,7 +848,7 @@ void MainWindow::getPrbChange() } if(_prb->prbC.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe C eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe C eeprom has occured."); } } else @@ -861,7 +861,7 @@ void MainWindow::getPrbChange() QtConcurrent::run(this, &MainWindow::getProbeColor, Qt::red, 2); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -890,7 +890,7 @@ void MainWindow::getPrbChange() } if(_prb->prbD.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe D eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe D eeprom has occured."); } } else @@ -903,7 +903,7 @@ void MainWindow::getPrbChange() QtConcurrent::run(this, &MainWindow::getProbeColor, Qt::red, 3); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -1079,13 +1079,13 @@ void MainWindow::on_btn_fpgaBrowse_clicked() "*.bit"); if(fpgaProgramPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SLAVE_PROG_FAILED, "No file has selected."); } ui->tb_fpgaBit->setText(fpgaProgramPath); _settings->setValue(FPGA_FILE_PATH, fpgaProgramPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -1098,11 +1098,11 @@ void MainWindow::fpgaProgram(QString& path) { if(path.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SLAVE_PROG_FAILED, "No file has selected."); } _trx.slaveFpgaProgram(path); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -1130,7 +1130,7 @@ void MainWindow::programThreadFinish() slaveProgButtonsEnable(true); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -1149,7 +1149,7 @@ void MainWindow::on_btn_fpgaProgram_clicked() auto path = ui->tb_fpgaBit->text(); if(path.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SLAVE_PROG_FAILED, "No file has selected."); } QFuture programFuture = QtConcurrent::run(this, &MainWindow::fpgaProgram, path); @@ -1161,7 +1161,7 @@ void MainWindow::on_btn_fpgaProgram_clicked() emit programmingGif(ui->l_programming); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -1177,7 +1177,7 @@ void MainWindow::mcsProgram(QString& path) { if(path.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } auto flashSel = ui->cb_flashSelect->currentIndex(); @@ -1192,7 +1192,7 @@ void MainWindow::mcsProgram(QString& path) break; } } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1213,7 +1213,7 @@ void MainWindow::mcsThreadFinish() mcsButtonsEnable(true); } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1227,7 +1227,7 @@ void MainWindow::mcsRead(QString& path) { if(path.isNull()) { - throw SonoException("No file is selected."); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } auto flashSel = ui->cb_flashSelect->currentIndex(); @@ -1242,7 +1242,7 @@ void MainWindow::mcsRead(QString& path) break; } } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1263,7 +1263,7 @@ void MainWindow::mcsReadFinish() mcsButtonsEnable(true); } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1281,13 +1281,13 @@ void MainWindow::on_btn_mcsBrowse_clicked() "*.bin"); if(mcsProgramPath.isEmpty() || mcsProgramPath.isNull()) { - throw SonoException("No file is selected."); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } ui->tb_mcsFilePath->setText(mcsProgramPath); _settings->setValue(MCS_FILE_PATH, mcsProgramPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -1303,7 +1303,7 @@ void MainWindow::on_btn_mcsProgram_clicked() auto path = ui->tb_mcsFilePath->text(); if(path.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } QString str = "doing"; @@ -1315,7 +1315,7 @@ void MainWindow::on_btn_mcsProgram_clicked() emit programmingGif(ui->l_mcsProgramming); } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1334,7 +1334,7 @@ void MainWindow::on_btn_mcsRead_clicked() QFileDialog::ShowDirsOnly); if(mcsSavePath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected"); } QString str = "doing"; @@ -1346,7 +1346,7 @@ void MainWindow::on_btn_mcsRead_clicked() emit programmingGif(ui->l_mcsProgramming); } - catch(SonoException& e) + catch(HardwareException& e) { mcsButtonsEnable(true); qDebug() << e.what(); @@ -1366,7 +1366,7 @@ void MainWindow::flashTimeout(QString message) { if(_flashTimer.remainingTime() == 0) { - throw SonoException(message.toStdString()); + throw HardwareException(TRX_READ_FAILED, message); } } @@ -1583,7 +1583,7 @@ void MainWindow::on_btn_dynConSetParams_clicked() readDynamicContrastParameters(dynamicContrastParams); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -1754,7 +1754,7 @@ bool MainWindow::hvPermission() else { permission = false; - throw SonoException("Probe A not connected, so can't be selected."); + throw HardwareException(PROBE_SEL_FAILED, "Probe A not connected, so can't be selected."); } } @@ -1767,7 +1767,7 @@ bool MainWindow::hvPermission() else { permission = false; - throw SonoException("Probe B not connected, so can't be selected."); + throw HardwareException(PROBE_SEL_FAILED, "Probe B not connected, so can't be selected."); } } @@ -1780,7 +1780,7 @@ bool MainWindow::hvPermission() else { permission = false; - throw SonoException("Probe C not connected, so can't be selected."); + throw HardwareException(PROBE_SEL_FAILED, "Probe C not connected, so can't be selected."); } } @@ -1793,7 +1793,7 @@ bool MainWindow::hvPermission() else { permission = false; - throw SonoException("Probe D not connected, so can't be selected."); + throw HardwareException(PROBE_SEL_FAILED, "Probe D not connected, so can't be selected."); } } } @@ -1802,7 +1802,7 @@ bool MainWindow::hvPermission() permission = true; } } - catch(SonoException& e) + catch(HardwareException& e) { permission = false; qDebug() << e.what(); @@ -1834,7 +1834,7 @@ void MainWindow::on_btn_scenStart_clicked() QString dmaLogPath = ui->tb_frameLogPath->text(); if(dmaLogPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(SCEN_START_ERROR, "No file has selected"); } ui->btn_scenStart->setText("Scenario Stop"); ui->btn_emulator->setText("Emulator Start"); @@ -1873,7 +1873,7 @@ void MainWindow::on_btn_scenStart_clicked() _trx.scenPlayerStop(true); } } - catch(SonoException& e) + catch(HardwareException& e) { _frame.clear(); _lastBuffer.clear(); @@ -1904,7 +1904,7 @@ void MainWindow::on_btn_emulator_clicked() QString dmaLogPath = ui->tb_frameLogPath->text(); if(dmaLogPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(EMU_DMA_ERROR, "No file has selected"); } QString emulPath = QFileDialog::getOpenFileName(this, @@ -1913,7 +1913,7 @@ void MainWindow::on_btn_emulator_clicked() "*.bin"); if(emulPath.isEmpty() || emulPath.isNull()) { - throw SonoException("No file is selected."); + throw HardwareException(EMU_DMA_ERROR, "No file has selected."); } ui->btn_emulator->setText("Filling RAM..."); ui->btn_emulator->repaint(); @@ -1957,7 +1957,7 @@ void MainWindow::on_btn_emulator_clicked() _trx.emulatorStop(); } } - catch(SonoException& e) + catch(HardwareException& e) { _frame.clear(); _lastBuffer.clear(); @@ -1979,7 +1979,7 @@ void MainWindow::logPcie(QString logPath, quint32 logCount, QLCDNumber* lcdCount { if(logPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(DMA_XFER_ERROR, "No file has selected."); } _dmaLogCount = 0; @@ -2017,7 +2017,7 @@ void MainWindow::logPcie(QString logPath, quint32 logCount, QLCDNumber* lcdCount if(!file.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't save DMA log file for frame logging"); + throw HardwareException(DMA_XFER_ERROR, "Couldn't save DMA log file for frame logging."); } qApp->processEvents(); file.write(temp); @@ -2032,7 +2032,7 @@ void MainWindow::logPcie(QString logPath, quint32 logCount, QLCDNumber* lcdCount } } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); _dmaLog = false; @@ -2050,13 +2050,13 @@ void MainWindow::on_btn_frameLogBrowse_clicked() QFileDialog::ShowDirsOnly); if(frameLogPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(DMA_XFER_ERROR, "No file has selected."); } ui->tb_frameLogPath->setText(frameLogPath); _settings->setValue(FRAME_LOG_PATH, frameLogPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2077,7 +2077,7 @@ void MainWindow::on_btn_dmaLogLast_clicked() QString dmaLogPath = ui->tb_frameLogPath->text(); if(dmaLogPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(DMA_XFER_ERROR, "No file has selected."); } QString str = "doing"; @@ -2094,7 +2094,7 @@ void MainWindow::on_btn_dmaLogLast_clicked() dmaLogWatcher.setFuture(dmaLogFuture); logButtonsEnable(false); } - catch(SonoException& e) + catch(HardwareException& e) { logButtonsEnable(true); qDebug() << e.what(); @@ -2168,7 +2168,7 @@ void MainWindow::on_btn_dmaShow_clicked() } /*************************************************************************************************/ -quint32 MainWindow::frameDataCalc(QByteArray frame, qint32 index) +quint32 MainWindow::frameDataCalc(const QByteArray &frame, qint32 index) const { return (( static_cast(frame[index])) & 0x000000FF) | (((static_cast(frame[index + 1])) << 8) & 0x0000FF00) | @@ -2475,12 +2475,12 @@ void MainWindow::on_chk_headerLogEn_clicked(bool checked) { if(_headerLogFile->fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(DMA_XFER_ERROR, "No file has selected."); } if(!_headerLogFile->open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open file for logging"); + throw HardwareException(DMA_XFER_ERROR, "Couldn't open file for logging."); } QTextStream _headerLog(_headerLogFile); @@ -2500,7 +2500,7 @@ void MainWindow::on_chk_headerLogEn_clicked(bool checked) } } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2634,7 +2634,7 @@ void MainWindow::on_btn_setAo_clicked() } } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2667,7 +2667,7 @@ void MainWindow::on_chk_hvRegEn_clicked(bool checked) _trx.setRegulatorSyncClk(HVReg, regSyncParams); } } - catch(SonoException& e) + catch(HardwareException& e) { regulatorSync regSyncParams = { @@ -2706,7 +2706,7 @@ void MainWindow::on_chk_pm5RegEn_clicked(bool checked) _trx.setRegulatorSyncClk(PM5Reg, regSyncParams); } } - catch(SonoException& e) + catch(HardwareException& e) { regulatorSync regSyncParams = { @@ -2733,7 +2733,7 @@ void MainWindow::on_chk_mpsInit_clicked() _trx.mpsPwrOff(); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2748,7 +2748,7 @@ void MainWindow::on_btn_supJump_clicked() _trx.mpsReset(); //off _ jump ui->chk_mpsInit->setChecked(false); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2761,7 +2761,7 @@ void MainWindow::on_btn_updateRdbackValue_clicked() { _trx.supervisorRbValue(_supRbValue); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -2811,7 +2811,7 @@ void MainWindow::on_btn_updateRdbackValue_clicked() { _trx.mpsFaultStatus(_faultStatus); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3062,7 +3062,7 @@ void MainWindow::setScenario(const QString& h5Path) { if(ui->tb_scenFilesPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } AfeConfig afeConfigObj; @@ -3099,7 +3099,7 @@ void MainWindow::setScenario(const QString& h5Path) ui->tb_hvaDacValue->setText(QString::number(hva, 'g', 3)); ui->tb_hvbDacValue->setText(QString::number(hvb, 'g', 3)); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3127,7 +3127,7 @@ void MainWindow::on_btn_setScenario_clicked() QString h5Path = ui->tb_scenFilesPath->text() + sramScenario; if(ui->tb_scenFilesPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } emit scenarioReady(h5Path); @@ -3136,7 +3136,7 @@ void MainWindow::on_btn_setScenario_clicked() color = Qt::green; emit labelState(ui->l_scenFillingDone, str, color); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3172,11 +3172,11 @@ void MainWindow::setScenarioCompare(const QString& scenPath) { if(scenPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } _trx.setScenarioCompare(scenPath); } - catch(SonoException& e) + catch(HardwareException& e) { if(!(ui->l_verifySramParams->text() == "done")) { @@ -3225,14 +3225,14 @@ void MainWindow::on_btn_scenBrowse_clicked() QFileDialog::ShowDirsOnly); if(scenPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } ui->tb_scenFilesPath->setText(scenPath); _settings->setValue(SCENARIO_FILE_PATH, scenPath); ui->tb_scenInfo->clear(); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3249,11 +3249,11 @@ void MainWindow::on_btn_scenInfo_clicked() QFile sysFile(path); if(sysFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(SCN_ERROR, "No file has selected."); } if(!sysFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open system check param file programming"); + throw HardwareException(SCN_ERROR, "Couldn't open system check param file programming."); } QTextStream checkParam(&sysFile); @@ -3261,7 +3261,7 @@ void MainWindow::on_btn_scenInfo_clicked() ui->tb_scenInfo->setPlainText(systemStr); sysFile.close(); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3366,7 +3366,7 @@ QByteArray str2BigEndianByteArray4SerialNo(QString str) } else { - throw SonoException("Invalid board serial number."); + throw HardwareException(TRX_READ_FAILED, "Invalid board serial number."); } } @@ -3405,7 +3405,7 @@ QByteArray MainWindow::str2ByteArray (QString& str) } else { - throw SonoException("Out of range"); + throw HardwareException(TRX_READ_FAILED, "Out of range."); } } for(quint8 k = 0; k < temp.size() / 2; k++) @@ -3508,7 +3508,7 @@ void MainWindow::on_btn_trxRomId_clicked() ui->tb_trxRomId->setText(idStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3543,7 +3543,7 @@ void MainWindow::on_btn_trxRomPid_clicked() ui->tb_trxRomPid->setText(pidStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3578,7 +3578,7 @@ void MainWindow::on_btn_trxRomPcbVersion_clicked() ui->tb_trxRomPcbVersion->setText(pcbVersionStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3613,7 +3613,7 @@ void MainWindow::on_btn_trxRomSerialNumber_clicked() ui->tb_trxRomSerialNumber->setText(serialNoStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3648,7 +3648,7 @@ void MainWindow::on_btn_trxRomMasterCodeVersion_clicked() ui->tb_trxRomMasterCodeVersion->setText("MFV." + firstMbedStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3683,7 +3683,7 @@ void MainWindow::on_btn_trxRomSlaveCodeVersion_clicked() ui->tb_trxRomSlaveCodeVersion->setText("SFV." + secondMbedStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3704,7 +3704,7 @@ void MainWindow::on_chk_writeHeaderTrxRom_clicked(bool checked) qDebug() << bigEndianByteArray2Str(_trx.trxRomHeader(), 16); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3721,7 +3721,7 @@ void MainWindow::on_chk_clearTrxRom_clicked(bool checked) trxEepromWrite(clearAll, 0, _bCtrl); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3739,7 +3739,7 @@ void MainWindow::on_chk_clearTrxRom_clicked(bool checked) //QByteArray sendingArray = infoStr.toLatin1(); //trxEepromWrite(sendingArray, EEPROM_INFO_BEGIN, _bCtrl); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -3752,7 +3752,7 @@ void MainWindow::on_chk_clearTrxRom_clicked(bool checked) //QString receivingStr = _trx.trxInfo(); //ui->tb_trxRomInfo->setText(receivingStr); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -3788,7 +3788,7 @@ void MainWindow::on_btn_mpsRomId_clicked() ui->tb_mpsRomId->setText(idStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3823,7 +3823,7 @@ void MainWindow::on_btn_mpsRomPid_clicked() ui->tb_mpsRomPid->setText(pidStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3858,7 +3858,7 @@ void MainWindow::on_btn_mpsRomPcbVersion_clicked() ui->tb_mpsRomPcbVersion->setText(pcbVersionStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3893,7 +3893,7 @@ void MainWindow::on_btn_mpsRomSerialNumber_clicked() ui->tb_mpsRomSerialNumber->setText(serialNoStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3928,7 +3928,7 @@ void MainWindow::on_btn_mpsRomUcCodeVersion_clicked() ui->tb_mpsRomUcCodeVersion->setText("UCV." + firstMbedStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3963,7 +3963,7 @@ void MainWindow::on_btn_mpsRomSupCodeVersion_clicked() ui->tb_mpsRomSupCodeVersion->setText("SVV." + secondMbedStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -3984,7 +3984,7 @@ void MainWindow::on_chk_writeHeaderMpsRom_clicked(bool checked) qDebug() << bigEndianByteArray2Str(_trx.mpsRomHeader(), 16); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4001,7 +4001,7 @@ void MainWindow::on_chk_clearMpsRom_clicked(bool checked) mpsEepromWrite(clearAll, 0, _bCtrl); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4019,7 +4019,7 @@ void MainWindow::on_chk_clearMpsRom_clicked(bool checked) //QByteArray sendingArray = infoStr.toLatin1(); //mpsEepromWrite(sendingArray, EEPROM_INFO_BEGIN, _bCtrl); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -4032,7 +4032,7 @@ void MainWindow::on_chk_clearMpsRom_clicked(bool checked) //QString receivingStr = _trx.mpsInfo(); //ui->tb_mpsRomInfo->setText(receivingStr); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -4068,7 +4068,7 @@ void MainWindow::on_btn_prbCtrlRomId_clicked() ui->tb_prbCtrlRomId->setText(idStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4103,7 +4103,7 @@ void MainWindow::on_btn_prbCntlRomPid_clicked() ui->tb_prbCtrlRomPid->setText(pidStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4138,7 +4138,7 @@ void MainWindow::on_btn_prbCntlRomPcbVersion_clicked() ui->tb_prbCtrlRomPcbVersion->setText(pcbVersionStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4173,7 +4173,7 @@ void MainWindow::on_btn_prbCntlRomSerialNumber_clicked() ui->tb_prbCtrlRomSerialNumber->setText(serialNoStr); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4194,7 +4194,7 @@ void MainWindow::on_chk_writeHeaderPrbCtrlRom_clicked(bool checked) qDebug() << bigEndianByteArray2Str(_trx.prbCtrlRomHeader(), 16); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4211,7 +4211,7 @@ void MainWindow::on_chk_clearPrbCtrlRom_clicked(bool checked) prbCtrlEepromWrite(clearAll, 0, _bCtrl); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4229,7 +4229,7 @@ void MainWindow::on_chk_clearPrbCtrlRom_clicked(bool checked) //QByteArray sendingArray = infoStr.toLatin1(); //prbCtrlEepromWrite(sendingArray, EEPROM_INFO_BEGIN, _bCtrl); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -4242,7 +4242,7 @@ void MainWindow::on_chk_clearPrbCtrlRom_clicked(bool checked) //QString receivingStr = _trx.prbCtrlInfo(); //ui->tb_prbCtrlRomInfo->setText(receivingStr); //} -//catch(SonoException& e) +//catch(HardwareException& e) //{ //qDebug() << e.what(); //} @@ -4284,9 +4284,9 @@ void MainWindow::on_chk_sysCompatibilityCheck_clicked(bool checked) sysRoms.prbCtrl.pcbVersion = 2; sysRoms.mps.pcbVersion = 2; sysRoms.trx.firstMbedCodeVersion = 240001; - sysRoms.mps.firstMbedCodeVersion = 241023; + sysRoms.mps.firstMbedCodeVersion = 231203; sysRoms.trx.secondMbedCodeVersion = 240001; - sysRoms.mps.secondMbedCodeVersion = 231203; + sysRoms.mps.secondMbedCodeVersion = 241023; sysRoms.fpgaCodeVersion.masterCode = 2406241729; sysRoms.fpgaCodeVersion.slave0Code = 2408031117; sysRoms.fpgaCodeVersion.slave1Code = 2408031117; @@ -4300,7 +4300,7 @@ void MainWindow::on_chk_sysCompatibilityCheck_clicked(bool checked) "The system parameters are compatible."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); MESSAGE_BOX("Failed! \n\r" @@ -4328,7 +4328,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() ui->tb_prbRomIdRead->setText(uint2IdString(romStatus.id)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe A eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe A eeprom has occured."); } } else @@ -4336,7 +4336,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() MESSAGE_BOX("Probe A is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4351,7 +4351,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() ui->tb_prbRomIdRead->setText(uint2IdString(romStatus.id)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe B eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe B eeprom has occured."); } } else @@ -4359,7 +4359,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() MESSAGE_BOX("Probe B is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4374,7 +4374,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() ui->tb_prbRomIdRead->setText(uint2IdString(romStatus.id)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe C eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe C eeprom has occured."); } } else @@ -4382,7 +4382,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() MESSAGE_BOX("Probe C is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4397,7 +4397,7 @@ void MainWindow::on_btn_prbRomIdRead_clicked() ui->tb_prbRomIdRead->setText(uint2IdString(romStatus.id)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe D eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe D eeprom has occured."); } } else @@ -4405,14 +4405,14 @@ void MainWindow::on_btn_prbRomIdRead_clicked() MESSAGE_BOX("Probe D is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } break; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4438,7 +4438,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() ui->tb_prbRomImpulseRead->setText(byteArray2InfoString(receivingArray)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe A eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe A eeprom has occured."); } } else @@ -4446,7 +4446,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() MESSAGE_BOX("Probe A is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4463,7 +4463,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() ui->tb_prbRomImpulseRead->setText(byteArray2InfoString(receivingArray)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe B eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe B eeprom has occured."); } } else @@ -4471,7 +4471,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() MESSAGE_BOX("Probe B is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4488,7 +4488,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() ui->tb_prbRomImpulseRead->setText(byteArray2InfoString(receivingArray)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe C eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe C eeprom has occured."); } } else @@ -4496,7 +4496,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() MESSAGE_BOX("Probe C is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4513,7 +4513,7 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() ui->tb_prbRomImpulseRead->setText(byteArray2InfoString(receivingArray)); if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe D eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe D eeprom has occured."); } } else @@ -4521,14 +4521,14 @@ void MainWindow::on_btn_prbRomImpulseRead_clicked() MESSAGE_BOX("Probe D is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } break; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4556,12 +4556,12 @@ void MainWindow::prbRead(const QString& prbSelData, qint32 prbSel) if(prbRomPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(PROBE_READ_FAILED, "No file has selected"); } if(!prbRomFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open file for probe ROM data writing."); + throw HardwareException(PROBE_READ_FAILED, "Couldn't open file for probe ROM data writing."); } QByteArray prbAll = this->_bCtrl->prbEepromRead(PROBE_E2PROM_BYTE_ORIGIN, @@ -4580,7 +4580,7 @@ void MainWindow::prbRead(const QString& prbSelData, qint32 prbSel) color = Qt::green; emit labelState(ui->l_prbRomDone, str, color); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4600,11 +4600,11 @@ void MainWindow::prbWrite(qint32 prbSel) QFile prbRomFile(prbRomPath); if(prbRomFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(PROBE_READ_FAILED, "No file has selected"); } if(!prbRomFile.open(QIODevice::ReadOnly | QFile::Text)) { - throw SonoException("Couldn't open file for probe ROM data reading."); + throw HardwareException(PROBE_READ_FAILED, "Couldn't open file for probe ROM data reading."); } QByteArray prbAll; @@ -4623,7 +4623,7 @@ void MainWindow::prbWrite(qint32 prbSel) color = Qt::green; emit labelState(ui->l_prbRomDone, str, color); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4651,13 +4651,13 @@ void MainWindow::on_btn_prbRomBrowse_clicked() } if(prbRomPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(PROBE_READ_FAILED, "No file has selected."); } ui->tb_prbRomFilePath->setText(prbRomPath); _settings->setValue(PRB_FILE_PATH, prbRomPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4698,7 +4698,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe A eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe A eeprom has occured."); } } else @@ -4706,7 +4706,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() MESSAGE_BOX("Probe A is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4722,7 +4722,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe B eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe B eeprom has occured."); } } else @@ -4730,7 +4730,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() MESSAGE_BOX("Probe B is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4746,7 +4746,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe C eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe C eeprom has occured."); } } else @@ -4754,7 +4754,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() MESSAGE_BOX("Probe C is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4770,7 +4770,7 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe D eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe D eeprom has occured."); } } else @@ -4778,14 +4778,14 @@ void MainWindow::on_btn_prbRomWriteAll_clicked() MESSAGE_BOX("Probe D is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } break; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4811,7 +4811,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe A eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe A eeprom has occured."); } } else @@ -4819,7 +4819,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() MESSAGE_BOX("Probe A is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4835,7 +4835,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe B eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe B eeprom has occured."); } } else @@ -4843,7 +4843,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() MESSAGE_BOX("Probe B is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4859,7 +4859,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe C eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe C eeprom has occured."); } } else @@ -4867,7 +4867,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() MESSAGE_BOX("Probe C is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4883,7 +4883,7 @@ void MainWindow::on_btn_prbRomReadAll_clicked() if(romStatus.errorCode == EEPROM_CRC_ERROR) { - throw SonoException("The crc error of the probe D eeprom is occured."); + throw HardwareException(PROBE_READ_FAILED, "The crc error of the probe D eeprom has occured."); } } else @@ -4891,14 +4891,14 @@ void MainWindow::on_btn_prbRomReadAll_clicked() MESSAGE_BOX("Probe D is disconnected."); } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } break; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -4978,13 +4978,13 @@ void MainWindow::on_btn_biteScenBrowse_clicked() QFileDialog::ShowDirsOnly); if(biteScenPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } ui->tb_biteScenPath->setText(biteScenPath); _settings->setValue(BITE_SCEN_FILE_PATH, biteScenPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5000,7 +5000,7 @@ void MainWindow::on_btn_biteSetScenario_clicked() if(ui->tb_biteScenPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } QString str = "doing"; @@ -5013,7 +5013,7 @@ void MainWindow::on_btn_biteSetScenario_clicked() color = Qt::green; emit labelState(ui->l_biteScenFillingDone, str, color); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5030,13 +5030,13 @@ void MainWindow::on_btn_biteBrowse_clicked() "*.csv"); if(biteIqPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } ui->tb_biteFilesPath->setText(biteIqPath); _settings->setValue(BITE_FILE_PATH, biteIqPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5053,12 +5053,12 @@ void MainWindow::on_btn_biteIQ_clicked() QTextStream biteLog(&biteFile); if(biteFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } if(!biteFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open built-in test file for frame logging"); + throw HardwareException(BITE_FAILED, "Couldn't open built-in test file for frame logging"); } QString str = "doing"; @@ -5084,7 +5084,7 @@ void MainWindow::on_btn_biteIQ_clicked() color = Qt::green; emit labelState(ui->l_biteIQFillingDone, str, color); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5117,7 +5117,7 @@ void MainWindow::on_btn_setBiteLog_clicked() QFileDialog::ShowDirsOnly); if(biteLogPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } QString str = "doing"; @@ -5135,7 +5135,7 @@ void MainWindow::on_btn_setBiteLog_clicked() biteLogWatcher.setFuture(biteLogFuture); logButtonsEnable(false); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); logButtonsEnable(true); @@ -5261,13 +5261,13 @@ void MainWindow::on_btn_adcLogBrowse_clicked() QFileDialog::ShowDirsOnly); if(adcLoggerPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } ui->tb_adcLogPath->setText(adcLoggerPath); _settings->setValue(ADC_LOG_PATH, adcLoggerPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5286,7 +5286,7 @@ void MainWindow::catchAdcLog() if(adcLoggerPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } //ADC log count registering @@ -5494,7 +5494,7 @@ void MainWindow::catchAdcLog() logButtonsEnable(true); } - catch(SonoException& e) + catch(HardwareException& e) { _trx.setAfesPwr(afePwrdnEnable); _trx.setDebuggerMode(pulserHz, true); @@ -5513,7 +5513,7 @@ void MainWindow::on_btn_setAdcLog_clicked() { emit adcLog(); } - catch(SonoException& e) + catch(HardwareException& e) { _trx.setAfesPwr(afePwrdnEnable); _trx.setDebuggerMode(pulserHz, true); @@ -5597,13 +5597,13 @@ void MainWindow::on_btn_prbRelayLogBrowse_clicked() QFileDialog::ShowDirsOnly); if(logPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } ui->tb_prbRelayLogPath->setText(logPath); _settings->setValue(PROBE_LOG_PATH, logPath); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -5621,7 +5621,7 @@ void MainWindow::on_btn_prbRelayTestStart_clicked() { if(logPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } ui->btn_prbRelayTestStart->setEnabled(false); @@ -5673,11 +5673,11 @@ void MainWindow::on_btn_prbRelayTestStart_clicked() if(prbElementsFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(BITE_FAILED, "No file has selected"); } if(!prbElementsFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open file for probe elements data reading."); + throw HardwareException(BITE_FAILED, "Couldn't open file for probe elements data reading."); } QString prbStr; @@ -5766,7 +5766,7 @@ void MainWindow::on_btn_prbRelayTestStart_clicked() "All elements are corrected."); } } - catch(SonoException& e) + catch(HardwareException& e) { ui->chk_logCountEn->setChecked(false); on_chk_logCountEn_clicked(false); @@ -5950,7 +5950,7 @@ void MainWindow::catchGtReset(quint32 progCnt, quint32 taskItr, quint16 delayPer } } } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -5967,7 +5967,7 @@ void MainWindow::on_btn_tempTest_clicked() { emit gtReset(progCnt, taskItr, delayPerTask); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -5986,16 +5986,16 @@ void MainWindow::catchStatusLog(quint32 progCnt, QString h5Path = ui->tb_scenFilesPath->text() + sramScenario; if(ui->tb_scenFilesPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } - QString path = "/home/hasis/Desktop/hardware/Log/statusVector/statusLog.txt"; + QString path = "/home/os/hardware/Log/statusVector/statusLog.txt"; QFile file(path); QTextStream statusLog(&file); if(!file.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't save status log file."); + throw HardwareException(BITE_FAILED, "Couldn't save status log file."); } for(quint32 i = 0; i < progCnt; i++) @@ -6083,7 +6083,7 @@ void MainWindow::catchStatusLog(quint32 progCnt, file.close(); qApp->processEvents(); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -6101,7 +6101,7 @@ void MainWindow::on_btn_tempStatusLog_clicked() { emit statusLog(progCnt, taskItr, delayPerTask, scenStartDuration); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -6117,12 +6117,12 @@ void MainWindow::catchEndurance(quint32 progCnt, { _timeout->stop(); quint32 statusVec; - QString statusPath = "/home/hasis/Desktop/hardware/Log/statusVector/statusLog.txt"; + QString statusPath = "/home/os/hardware/Log/statusVector/statusLog.txt"; QFile statusFile(statusPath); QTextStream statusLog(&statusFile); if(!statusFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't save status log file."); + throw HardwareException(BITE_FAILED, "Couldn't save status log file."); } QDir dir; @@ -6130,10 +6130,10 @@ void MainWindow::catchEndurance(quint32 progCnt, QString h5Path = ui->tb_scenFilesPath->text() + sramScenario; if(ui->tb_scenFilesPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } - QString enduranceLogPath = "/home/hasis/Desktop/hardware/Log/enduranceTest/"; + QString enduranceLogPath = "/home/os/hardware/Log/enduranceTest/"; ui->chk_firstFrameLogEn->setChecked(true); for(quint32 i = 0; i < progCnt; i++) @@ -6242,7 +6242,7 @@ void MainWindow::catchEndurance(quint32 progCnt, ui->chk_firstFrameLogEn->setChecked(false); _timeout->start(1000); } - catch(SonoException& e) + catch(HardwareException& e) { _timeout->start(1000); slaveProgButtonsEnable(true); @@ -6260,7 +6260,7 @@ void MainWindow::on_btn_endurance_clicked() { emit endurance(progCnt, taskItr, delayPerTask); } - catch(SonoException& e) + catch(HardwareException& e) { slaveProgButtonsEnable(true); qDebug() << e.what(); @@ -6278,14 +6278,14 @@ void MainWindow::on_btn_builtINTemp_clicked() { _timeout->stop(); QDir dir; - QString enduranceBiteLogPath = "/home/hasis/Desktop/hardware/Log/BITe_endurance/"; + QString enduranceBiteLogPath = "/home/os/hardware/Log/BITe_endurance/"; QString sramScenario = "/scenGenOutput/scenario.h5"; QString h5Path = ui->tb_biteScenPath->text() + sramScenario; if(ui->tb_biteScenPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } for(quint32 i = 0; i < progCnt; i++) @@ -6409,7 +6409,7 @@ void MainWindow::on_btn_builtINTemp_clicked() _timeout->start(1000); qApp->processEvents(); } - catch(SonoException& e) + catch(HardwareException& e) { _timeout->start(1000); logButtonsEnable(true); @@ -6431,14 +6431,14 @@ void MainWindow::on_btn_headerEndurance_clicked() _timeout->stop(); if(!_headerEndurance->open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't save status log file."); + throw HardwareException(BITE_FAILED, "Couldn't save status log file."); } QString sramScenario = "/scenGenOutput/scenario.h5"; QString h5Path = ui->tb_scenFilesPath->text() + sramScenario; if(ui->tb_scenFilesPath->text().isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(BITE_FAILED, "No file has selected."); } for(quint32 i = 0; i < progCnt; i++) @@ -6547,7 +6547,7 @@ void MainWindow::on_btn_headerEndurance_clicked() _headerEndur = false; qApp->processEvents(); } - catch(SonoException& e) + catch(HardwareException& e) { _timeout->start(1000); _headerEndurance->flush(); @@ -6569,14 +6569,14 @@ void MainWindow::on_btn_scenFolderBrowse_clicked() QFileDialog::ShowDirsOnly); if(scenPath.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } ui->tb_scenFolder->setText(scenPath); _settings->setValue(SCENARIOS_FOLDER_PATH, scenPath); ui->tb_scenInfo->clear(); } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -6599,12 +6599,12 @@ void MainWindow::on_btn_scenChange_clicked() qDebug() << scenList; quint32 statusVec; - QString statusPath = "/home/hasis/Desktop/hardware/Log/statusVector/statusLog.txt"; + QString statusPath = "/home/os/hardware/Log/statusVector/statusLog.txt"; QFile statusFile(statusPath); QTextStream statusLog(&statusFile); if(!statusFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't save status log file."); + throw HardwareException(SCN_ERROR, "Couldn't save status log file."); } QDir dir; @@ -6665,7 +6665,7 @@ void MainWindow::on_btn_scenChange_clicked() QString scenChangeLogPath = scenFolder + "/" + scenStr + "/"; if(scenFolder.isEmpty()) { - throw SonoException("No file is selected."); + throw HardwareException(SCN_ERROR, "No file has selected."); } setScenario(h5Path); @@ -6728,7 +6728,7 @@ void MainWindow::on_btn_scenChange_clicked() ui->chk_firstFrameLogEn->setChecked(false); _timeout->start(1000); } - catch(SonoException& e) + catch(HardwareException& e) { _timeout->start(1000); slaveProgButtonsEnable(true); @@ -6777,7 +6777,7 @@ void MainWindow::on_sb_Fan1Pwm_valueChanged(int arg1) _trx.setTrxFanRpm(fan1, dutyCycle); qDebug() << "Fan1 (D.C.): " << dutyCycle; } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -6792,7 +6792,7 @@ void MainWindow::on_sb_Fan2Pwm_valueChanged(int arg1) _trx.setTrxFanRpm(fan2, dutyCycle); qDebug() << "Fan2 (D.C.): " << dutyCycle; } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); } @@ -6829,3 +6829,20 @@ void MainWindow::on_btn_spiVerify_clicked() { _trx.spiFlashVerify(); } + +/*************************************************************************************************/ +void MainWindow::on_chk_quickChanging_clicked(bool checked) +{ + if(checked) + { + _trx.scenPlayerStop(); + delay(1); + _trx.scenPlayerStart(); + delay(50); + } + else + { + _trx.scenPlayerStop(); + } + +} diff --git a/mainwindow.h b/mainwindow.h index 5dbb9a6..b2913a6 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -71,7 +71,7 @@ #define ENABLE "Enable" #define DISABLE "Disable" -#define LOG_COUNT_FROM_FIRST 50U +#define LOG_COUNT_FROM_FIRST 100U #define TRANSFER_LENGTH 128 * 1024 #define TRANSFER_RATE 30.0f @@ -246,25 +246,25 @@ private: void dynamicContrastCsvRead(const QString &path); - quint32 frameDataCalc(QByteArray frame, qint32 index); - - QString _fpgaProgramFolder = "/home/hasis/Desktop/hardware/hwCode"; - QString _mcsProgramFolder = "/home/hasis/Desktop/hardware/hwCode"; - QString _mcsVerifyFolder = "/home/hasis/Desktop/hardware/hwCode"; - QString _scenarioFolder = "/home/hasis/Desktop/hardware/Scenarios"; - QString _scenFolder = "/home/hasis/Desktop/hardware/Log/ScenariosFolder"; - QString _emulFolder = "/home/hasis/Desktop/hardware/emulator"; - QString _BITeScenFolder = "/home/hasis/Desktop/hardware/BITe_IQ"; - QString _BITeIqFolder = "/home/hasis/Desktop/hardware/BITe_IQ"; - QString _frameLogFolder = "/home/hasis/Desktop/hardware/Log/DMA"; - QString _biteLogFolder = "/home/hasis/Desktop/hardware/Log/BITe"; - QString _adcLoggerFolder = "/home/hasis/Desktop/hardware/Log/ADC"; - QString _probeLoggerFolder = "/home/hasis/Desktop/hardware/Log/ProbeElements"; - QString _statusVectorPSPath = "/home/hasis/Desktop/hardware/Log/statusVectorPS"; - QString _headerLogPath = "/home/hasis/Desktop/hardware/Log/frameHeader/headerLog.csv"; - QString _headerEndurancePath = "/home/hasis/Desktop/hardware/Log/header_endurance/headerLog.csv"; - QString _probeRomPath = "/home/hasis/Desktop/hardware/ProbeRom"; - QString _dynContrCurvesPath = "/home/hasis/Desktop/hardware/Develop_HardwareTest/developHw/kernelParams/DynContrCurves.csv"; + quint32 frameDataCalc(const QByteArray& frame, qint32 index) const; + + QString _fpgaProgramFolder = "/home/os/hardware/hwCode"; + QString _mcsProgramFolder = "/home/os/hardware/hwCode"; + QString _mcsVerifyFolder = "/home/os/hardware/hwCode"; + QString _scenarioFolder = "/home/os/hardware/Scenarios"; + QString _scenFolder = "/home/os/hardware/Log/ScenariosFolder"; + QString _emulFolder = "/home/os/hardware/emulator"; + QString _BITeScenFolder = "/home/os/hardware/BITe_IQ"; + QString _BITeIqFolder = "/home/os/hardware/BITe_IQ"; + QString _frameLogFolder = "/home/os/hardware/Log/DMA"; + QString _biteLogFolder = "/home/os/hardware/Log/BITe"; + QString _adcLoggerFolder = "/home/os/hardware/Log/ADC"; + QString _probeLoggerFolder = "/home/os/hardware/Log/ProbeElements"; + QString _statusVectorPSPath = "/home/os/hardware/Log/statusVectorPS"; + QString _headerLogPath = "/home/os/hardware/Log/frameHeader/headerLog.csv"; + QString _headerEndurancePath = "/home/os/hardware/Log/header_endurance/headerLog.csv"; + QString _probeRomPath = "/home/os/hardware/ProbeRom"; + QString _dynContrCurvesPath = "/home/os/hardware/Develop_HardwareTest/developHw/kernelParams/DynContrCurves.csv"; QVector _dmaBuffer; QByteArray _lastBuffer; @@ -588,6 +588,8 @@ private slots: void on_chk_pm5RegEn_clicked(bool checked); + void on_chk_quickChanging_clicked(bool checked); + signals: void showMessage(QString message); void threeDReady(); diff --git a/mainwindow.ui b/mainwindow.ui index 1213926..25b3c74 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -42,7 +42,7 @@ - 1 + 6 @@ -7051,6 +7051,24 @@ Dynamic Contrast Spi Verify + + + + 880 + 20 + 201 + 41 + + + + + 10 + + + + Quick Changing + + diff --git a/src/model/hardware/Hardware.cpp b/src/model/hardware/Hardware.cpp index dc71412..1bae1fe 100644 --- a/src/model/hardware/Hardware.cpp +++ b/src/model/hardware/Hardware.cpp @@ -122,7 +122,7 @@ void Hardware::commandHandler(const CommandRequest& request) //exp.getInnerMessage(), //metaObject()->className()); - fail(request, {exp.getMessage()}); +// fail(request, {exp.getMessage()}); } break; } diff --git a/src/model/hardware/core/lowLevelApi/TrxBoard.cpp b/src/model/hardware/core/lowLevelApi/TrxBoard.cpp index b2913dc..cc6d118 100644 --- a/src/model/hardware/core/lowLevelApi/TrxBoard.cpp +++ b/src/model/hardware/core/lowLevelApi/TrxBoard.cpp @@ -41,34 +41,34 @@ void TrxBoard::sonoHeartBeatsDisable(void) const this->afesHeartBeatDisable(true); } -void TrxBoard::sendPacket() -{ - auto counter(0); - while(_run) - { - if(_swCounter == 0) - { - std::this_thread::sleep_for(std::chrono::milliseconds(3)); - continue; - } - else if(_swCounter != counter) - { - auto framePacket = QByteArray::fromRawData(_device.getBufferPtr(counter), BUFFER_SIZE); - -#ifdef DEVELOP_UI - emit sendFramePacket(framePacket); -#else - packetEngine.newData(framePacket); -#endif - - counter++; - if(counter >= SW_BUFFER_NUM) - { - counter = 0; - } - } - } -} +//void TrxBoard::sendPacket() +//{ +// auto counter(0); +// while(_run) +// { +// if(_swCounter == 0) +// { +// std::this_thread::sleep_for(std::chrono::milliseconds(3)); +// continue; +// } +// else if(_swCounter != counter) +// { +// auto framePacket = QByteArray::fromRawData(_device.getBufferPtr(counter), BUFFER_SIZE); + +//#ifdef DEVELOP_UI +// emit sendFramePacket(framePacket); +//#else +// packetEngine.newData(framePacket); +//#endif + +// counter++; +// if(counter >= SW_BUFFER_NUM) +// { +// counter = 0; +// } +// } +// } +//} void TrxBoard::readData() { @@ -106,7 +106,7 @@ void TrxBoard::readData() (batch - preBatch > 1) || (batch - preBatch == 1 && subBbatch != 0)) { - //throw SonoException("Batch/subBatch id error is occured."); + //throw HardwareException(DMA_XFER_ERROR, "Batch/subBatch id error occured."); } preBatch = batch; preSubBatch = subBbatch; @@ -170,8 +170,8 @@ void TrxBoard::afeAdcsSync(const quint8& slaveMounted) { if(this->_bCtrlMngt->checkTimeout()) { - throw SonoException( - "The timeout of the afe adcs sync is happend without receiving of sync done."); + throw HardwareException(AFE_ERROR, + "The timeout of the afe adcs sync happend without receiving of sync done."); } } this->_bCtrlMngt->timerStop(); @@ -181,8 +181,8 @@ void TrxBoard::afeAdcsSync(const quint8& slaveMounted) quint32 syncErr = Slave->getAfeSyncError(); if(syncErr != 0) { - throw SonoException( - "The error of the afe adcs sync is happend."); + throw HardwareException(AFE_ERROR, + "The error of the afe adcs sync happend."); } } }; @@ -219,7 +219,7 @@ void TrxBoard::waitForCaptureDone(Debug* _dbg) { if(this->_bCtrlMngt->checkTimeout()) { - throw SonoException("Failure to receive adc capture done."); + throw HardwareException(AFE_ERROR, "Failure to receive adc capture done."); } } @@ -253,7 +253,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga) { if(this->_bCtrlMngt->checkTimeout()) { - throw SonoException("Failure to receive adc log transfer done."); + throw HardwareException(AFE_ERROR, "Failure to receive adc log transfer done."); } } @@ -269,7 +269,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga) if(this->_bCtrlMngt->checkTimeout()) { - throw SonoException("Failure to receive adc sampler done."); + throw HardwareException(AFE_ERROR, "Failure to receive adc sampler done."); } } @@ -277,7 +277,7 @@ void TrxBoard::adcLogTransferRoutine(Debug* _dbg, quint8 chNumPerFpga) if(adcSamplerError) { - throw SonoException("The adc sampler error is occured."); + throw HardwareException(AFE_ERROR, "The adc sampler error occured."); } //Adc logger stop @@ -515,7 +515,7 @@ void TrxBoard::fpgaProgram(const QString path, const quint8& slaveMounted) const { if(slaveMounted <= 0 || slaveMounted >= 8) { - throw SonoException("Wrong mounted slave fpga is selected"); + throw HardwareException(SLAVE_PROG_FAILED, "Wrong mounted slave fpga has selected."); } QByteArray bitFileData; @@ -524,12 +524,12 @@ void TrxBoard::fpgaProgram(const QString path, const quint8& slaveMounted) const if(bitFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(SLAVE_PROG_FAILED, "No file has selected."); } if(!bitFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open bit file programming"); + throw HardwareException(SLAVE_PROG_FAILED, "Couldn't open bit file programming."); } bitFileData = bitFile.readAll(); @@ -612,7 +612,7 @@ void TrxBoard::gtReadReset() if(error) { - throw SonoException("The GT error is happened and it's didn't solve by gt reset."); + throw HardwareException(SCEN_GT_ERROR, "The GT error happened and it didn't solve by gt reset."); } } } @@ -628,12 +628,12 @@ void TrxBoard::mcsRead(const QString path) const if(path.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } if(!mcsFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open BPI bin file programming"); + throw HardwareException(TRX_READ_FAILED, "Couldn't open BPI bin file programming."); } mcsList = this->_bpiFlash->readMcs(); @@ -655,7 +655,7 @@ void TrxBoard::setProbeDependParams(ScenPrbDepHardwareParam& prbDepParams) /////////////////////////// DSP setting /////////////////////////// if(prbDepParams.prbDepParams.apodizationLut.size() != APODIZATIONLUT_LUT_MAX) { - throw SonoException("Apodization lut is out of range"); + throw HardwareException(SCN_ERROR, "Apodization lut is out of range."); } this->_beamFormerSlave0->apodizationLut(prbDepParams.prbDepParams.apodizationLut); this->_beamFormerSlave1->apodizationLut(prbDepParams.prbDepParams.apodizationLut); @@ -664,7 +664,7 @@ void TrxBoard::setProbeDependParams(ScenPrbDepHardwareParam& prbDepParams) if(prbDepParams.prbDepParams.atgcLut.size() != ATGC_LUT_MAX) { - throw SonoException("Atgc lut is out of range"); + throw HardwareException(SCN_ERROR, "Atgc lut is out of range."); } this->_dsp->atgcLut(prbDepParams.prbDepParams.atgcLut); @@ -685,109 +685,109 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw) if(scenGenHw.focusTypeNumber > FOCUS_TYPE_NUMBER_MAX) { - throw SonoException("Focus type number is out of range"); + throw HardwareException(SCN_ERROR, "Focus type number is out of range."); } _scenParams->focusTypeNumber = scenGenHw.focusTypeNumber; if(scenGenHw.totalTxShotNumber > TOTAL_TX_SHOT_NUMBER_MAX) { - throw SonoException("Total tx shot number is out of range"); + throw HardwareException(SCN_ERROR, "Total tx-shot number is out of range."); } _scenParams->totalTxShotNumber = scenGenHw.totalTxShotNumber; if(scenGenHw.rxBeamFormerNumber.size() > RX_BEAMFORMER_NUMBER_MAX) { - throw SonoException("Rx beam former number is out of range"); + throw HardwareException(SCN_ERROR, "Rx beamformer number is out of range."); } _scenParams->rxBeamFormerNumber = scenGenHw.rxBeamFormerNumber; if(scenGenHw.hwRegister.scenarioEndIndex > SCENARIO_INDEX_MAX) { - throw SonoException("Scenario end index is out of range"); + throw HardwareException(SCN_ERROR, "Scenario end index is out of range."); } if(scenGenHw.hwRegister.scenarioEndIndex < scenGenHw.hwRegister.scenarioStartIndex) { - throw SonoException( - "The scenario end index must be greater than or equal to the scenario start index"); + throw HardwareException(SCN_ERROR, + "The scenario end index must be greater than or equal to the scenario start index."); } if(scenGenHw.hwRegister.scenarioEndIndex != (scenGenHw.totalTxShotNumber - 1)) { - throw SonoException( - "The scenario end index must be equal to the total tx shot number minus one"); + throw HardwareException(SCN_ERROR, + "The scenario end index must be equal to the total tx-shot number minus one."); } _scenParams->scenarioStartIndex = scenGenHw.hwRegister.scenarioStartIndex; _scenParams->scenarioEndIndex = scenGenHw.hwRegister.scenarioEndIndex; if(scenGenHw.hwRegister.blendWeight.size() != BLENDWEIGHT_LUT_MAX) { - throw SonoException("Blend weight lut is out of range"); + throw HardwareException(SCN_ERROR, "Blend weight lut is out of range."); } _scenParams->hwRegister->blendWeight = scenGenHw.hwRegister.blendWeight; if(scenGenHw.hwRegister.elementXPosition.size() != ELEMENT_POSITION_LUT_MAX) { - throw SonoException("Element position x is out of range"); + throw HardwareException(SCN_ERROR, "Element position x is out of range."); } _scenParams->hwRegister->elementPosition->xPosition = scenGenHw.hwRegister.elementXPosition; if(scenGenHw.hwRegister.elementYPosition.size() != ELEMENT_POSITION_LUT_MAX) { - throw SonoException("Element position y is out of range"); + throw HardwareException(SCN_ERROR, "Element position y is out of range."); } _scenParams->hwRegister->elementPosition->yPosition = scenGenHw.hwRegister.elementYPosition; if(scenGenHw.hwRegister.elementZPosition.size() != ELEMENT_POSITION_LUT_MAX) { - throw SonoException("Element position z is out of range"); + throw HardwareException(SCN_ERROR, "Element position z is out of range."); } _scenParams->hwRegister->elementPosition->zPosition = scenGenHw.hwRegister.elementZPosition; //if(scenGenHw.hwRegister.freqLut.size() != FREQUENCY_LUT_MAX) //{ -//throw SonoException("Frequency lut is out of range"); +//throw HardwareException(SCN_ERROR, "Frequency lut is out of range."); //} //_scenParams->hwRegister->freqLut = scenGenHw.hwRegister.freqLut; if(scenGenHw.hwRegister.dtgcLut.size() != DTGC_LUT_MAX) { - throw SonoException("Dtgc lut is out of range"); + throw HardwareException(SCN_ERROR, "Dtgc lut is out of range."); } _scenParams->hwRegister->dtgcLut = scenGenHw.hwRegister.dtgcLut; if(scenGenHw.hwRegister.dualPathWeight.size() != DUAL_PATH_MAX) { - throw SonoException("Dual path weight is out of range"); + throw HardwareException(SCN_ERROR, "Dual path weight is out of range."); } _scenParams->hwRegister->dualPathWeight = scenGenHw.hwRegister.dualPathWeight; if(scenGenHw.hwRegister.pulseTypeNumber > PULSE_LUT_MAX) { - throw SonoException("Pulse type number is out of range"); + throw HardwareException(SCN_ERROR, "Pulse type number is out of range."); } _scenParams->hwRegister->pulseTypeNumber = scenGenHw.hwRegister.pulseTypeNumber; if(scenGenHw.hwRegister.rxBeamFormerTypeNumber > RXBEAMFORMER_LUT_MAX) { - throw SonoException("Rx beam former type number is out of range"); + throw HardwareException(SCN_ERROR, "Rx beamformer type number is out of range."); } _scenParams->hwRegister->rxBeamFormerTypeNumber = scenGenHw.hwRegister.rxBeamFormerTypeNumber; if(scenGenHw.hwRegister.receiverConfigTypeNumber > RRECEIVER_CONFIGURATION_LUT_MAX) { - throw SonoException("Receiver config type number is out of range"); + throw HardwareException(SCN_ERROR, "Receiver config type number is out of range."); } _scenParams->hwRegister->receiverConfigTypeNumber = scenGenHw.hwRegister.receiverConfigTypeNumber; if(scenGenHw.hwRegister.ddcParams.startLpf.size() != LPF_LUT_MAX) { - throw SonoException("Start lpf lut is out of range"); + throw HardwareException(SCN_ERROR, "Start lpf lut is out of range."); } if(scenGenHw.hwRegister.ddcParams.endLpf.size() != LPF_LUT_MAX) { - throw SonoException("End lpf lut is out of range"); + throw HardwareException(SCN_ERROR, "End lpf lut is out of range."); } _scenParams->hwRegister->lpfLut.clear(); @@ -801,29 +801,29 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw) if(scenGenHw.hwRegister.ddcParams.lpfScale.size() != LPF_SCALE_MAX) { - throw SonoException("Lpf scale coefficient is out of range"); + throw HardwareException(SCN_ERROR, "Lpf scale coefficient is out of range."); } _scenParams->hwRegister->lpfScaleCoeff = scenGenHw.hwRegister.ddcParams.lpfScale; if(scenGenHw.hwRegister.ddcParams.startFreqLut.size() != START_FREQ_LUT_MAX) { - throw SonoException("Start freq lut is out of range"); + throw HardwareException(SCN_ERROR, "Start freq lut is out of range."); } _scenParams->hwRegister->startFreqLut = scenGenHw.hwRegister.ddcParams.startFreqLut; if(scenGenHw.hwRegister.ddcParams.endFreqLut.size() != END_FREQ_LUT_MAX) { - throw SonoException("End freq lut is out of range"); + throw HardwareException(SCN_ERROR, "End freq lut is out of range."); } _scenParams->hwRegister->endFreqLut = scenGenHw.hwRegister.ddcParams.endFreqLut; if(scenGenHw.hwRegister.ddcParams.startFreqPoint.size() != FREQ_POINT_LUT_MAX) { - throw SonoException("Start freq point lut is out of range"); + throw HardwareException(SCN_ERROR, "Start freq point lut is out of range."); } if(scenGenHw.hwRegister.ddcParams.endFreqPoint.size() != FREQ_POINT_LUT_MAX) { - throw SonoException("End freq point lut is out of range"); + throw HardwareException(SCN_ERROR, "End freq point lut is out of range."); } _scenParams->hwRegister->freqPoint->clear(); @@ -837,25 +837,25 @@ void TrxBoard::setScenario(ScenHardware& scenGenHw) if(scenGenHw.hwRegister.ddcParams.freqStepLut.size() != FREQ_STEP_LUT_MAX) { - throw SonoException("Freq step lut is out of range"); + throw HardwareException(SCN_ERROR, "Freq step lut is out of range."); } _scenParams->hwRegister->freqStepLut = scenGenHw.hwRegister.ddcParams.freqStepLut; if(scenGenHw.hwRegister.ddcParams.lpfWeightStepLut.size() != LPF_WEIGHT_STEP_LUT_MAX) { - throw SonoException("Lpf weight step lut is out of range"); + throw HardwareException(SCN_ERROR, "Lpf weight step lut is out of range."); } _scenParams->hwRegister->lpfWeightStepLut = scenGenHw.hwRegister.ddcParams.lpfWeightStepLut; if(scenGenHw.hwRegister.ddcParams.startLpfWeightLut.size() != START_LPF_WEIGHT_LUT_MAX) { - throw SonoException("Lpf weight step lut is out of range"); + throw HardwareException(SCN_ERROR, "Lpf weight step lut is out of range."); } _scenParams->hwRegister->startLpfWeightLut = scenGenHw.hwRegister.ddcParams.startLpfWeightLut; if(scenGenHw.hwRegister.apodizationParams.winOpenStartPoint.size() > RXBEAMFORMER_LUT_MAX) { - throw SonoException("Apodization parameters is out of range"); + throw HardwareException(SCN_ERROR, "Apodization parameters are out of range."); } _scenParams->hwRegister->apodizationParams.clear(); @@ -1172,7 +1172,7 @@ void TrxBoard::setLineFilterCoefficient(QVector& lineFilterLut) { if(lineFilterLut.size() != LINE_FILTER_LUT_MAX) { - throw SonoException("Line filter lut is out of range"); + throw HardwareException(SCN_ERROR, "Line filter lut is out of range."); } _unsignedQntzrVec = Calculation::qntzr(lineFilterLut, 0, 9, 8, 0, true, false); QList lineFilterLutQ = _unsignedQntzrVec.toList(); @@ -1183,7 +1183,7 @@ void TrxBoard::setStbCoefficient(QVector& stbLut) { if(stbLut.size() != STB_COEFFICIENT_LUT_MAX) { - throw SonoException("Stb lut is out of range"); + throw HardwareException(STB_ERROR, "Stb lut is out of range."); } QList stbLutQ = stbLut.toList(); this->_dsp->stbCoefficient(stbLutQ); @@ -1198,7 +1198,7 @@ void TrxBoard::setDtgcLut(QVector& dtgcLut) { if(dtgcLut.size() != DTGC_LUT_MAX) { - throw SonoException("Dtgc lut is out of range"); + throw HardwareException(DTGC_ERROR, "Dtgc lut is out of range."); } _unsignedQntzrVec = Calculation::qntzr(dtgcLut, 0, 12, 8, 0, true, false); QList dtgcLutQ = _unsignedQntzrVec.toList(); @@ -1213,12 +1213,12 @@ void TrxBoard::setFramesMetaData(const QByteArray& metaData) qint32 metaLength = metaData.length(); if(!metaLength) { - throw SonoException("Meta data array is empty."); + throw HardwareException(SCEN_SRAM_ERROR, "Meta data array is empty."); } if(static_cast(metaLength) > META_DATA_LENGTH * 8) { - throw SonoException("Meta data byte array is out of range."); + throw HardwareException(SCEN_SRAM_ERROR, "Meta data byte array is out of range."); } QList clear; @@ -1302,7 +1302,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath) if(!sramFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't create the sram binary file due to the wrong path probably."); + throw HardwareException(SRAM_CMP_ERROR, "Couldn't create the sram binary file due to the wrong path probably."); } quint32 num(0); @@ -1328,7 +1328,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath) if(!csvReadFile.open(QFile::ReadOnly)) { - throw SonoException( + throw HardwareException(SRAM_CMP_ERROR, "Could not open the register's scenario params due to the wrong path probably."); } @@ -1338,7 +1338,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath) if(!csvWriteFile.open(QFile::WriteOnly)) { - throw SonoException( + throw HardwareException(SRAM_CMP_ERROR, "Couldn't create the register compare file due to the wrong path probably."); } @@ -1387,7 +1387,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath) if(!sramReadFile.open(QFile::ReadOnly)) { - throw SonoException( + throw HardwareException(SRAM_CMP_ERROR, "Could not open the sram's scenario params due to the wrong path probably."); } @@ -1414,7 +1414,7 @@ void TrxBoard::setScenarioCompare(const QString scenPath) if(boardValue != fileValue) { - throw SonoException("The sram scenario file is different to the sram params of board."); + throw HardwareException(SRAM_CMP_ERROR, "The sram scenario file is different to the sram params of board."); } temp.clear(); num += sizeof(quint64); @@ -1586,11 +1586,10 @@ void TrxBoard::scenPlayerStart(int count, bool afeHvPwrOn) _run = true; QtConcurrent::run(this, &TrxBoard::readLimitedData, count); - //QtConcurrent::run(this, &TrxBoard::sendPacket); } else { - throw SonoException("Total scenario luts and sram parameters are not written compeletely"); + throw HardwareException(SCEN_START_ERROR, "Total scenario luts and sram parameters have not written compeletely."); } } @@ -1732,11 +1731,10 @@ void TrxBoard::scenPlayerStart(bool unfreezeWithoutScenChanging) _run = true; QtConcurrent::run(this, &TrxBoard::readData); - //QtConcurrent::run(this, &TrxBoard::sendPacket); } else { - throw SonoException("Total scenario luts and sram parameters are not written compeletely"); + throw HardwareException(SCEN_START_ERROR, "Total scenario luts and sram parameters have not written compeletely."); } } @@ -1804,12 +1802,12 @@ void TrxBoard::fillRam(QString path) if(emulFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(EMU_DMA_ERROR, "No file has selected."); } if(!emulFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open frame file to emulator test"); + throw HardwareException(EMU_DMA_ERROR, "Couldn't open frame file to emulator test."); } sramData = emulFile.readAll(); @@ -1889,7 +1887,7 @@ void TrxBoard::systemCompare(QList ¤tSystem, QList return; } } - throw SonoException("The system parameters are not compatible."); + throw HardwareException(TRX_READ_FAILED, "The system parameters are not compatible."); } void TrxBoard::checkSystemCompatibility(QList &systemLut) @@ -1947,7 +1945,7 @@ void TrxBoard::crcCheck(const QByteArray array, quint8 crcRom) const quint8 crcGen = crcGenerator(array); if(crcGen != crcRom) { - throw SonoException("CRC check error is happend."); + throw HardwareException(PROBE_CRC_ERROR, "CRC check error happend."); } } @@ -1974,7 +1972,7 @@ QByteArray TrxBoard::trxRomHeader() const QByteArray header = (this->_bCtrlMngt->trxEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER)); if(headerArray != header) { - throw SonoException("The header checksum of the TRX e2prom is corrupted."); + throw HardwareException(TRX_READ_FAILED, "The header checksum of the TRX e2prom corrupted."); } return header; } @@ -2061,7 +2059,7 @@ QByteArray TrxBoard::mpsRomHeader() const QByteArray header = (this->_bCtrlMngt->mpsEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER)); if(headerArray != header) { - throw SonoException("The header checksum of the MPS e2prom is corrupted."); + throw HardwareException(MPS_READ_FAILED, "The header checksum of the MPS e2prom corrupted."); } return header; } @@ -2148,7 +2146,7 @@ QByteArray TrxBoard::prbCtrlRomHeader() const QByteArray header = (this->_bCtrlMngt->prbCtrlEepromRead(EEPROM_HEADER_BEGIN, EEPROM_HEADER_NUMBER)); if(headerArray != header) { - throw SonoException("The header checksum of the relay e2prom is corrupted."); + throw HardwareException(RELAY_READ_FAILED, "The header checksum of the relay e2prom corrupted."); } return header; } @@ -2219,22 +2217,22 @@ void TrxBoard::selectedPrbState(EepromStatus& romStatus, eSelectProbe prbSel) co vec = this->_bCtrlMngt->getConnectedPrb(); if(prbSel == prbA && !vec.at(0)) { - throw SonoException("This probe is disconnected"); + throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected."); } if(prbSel == prbB && !vec.at(1)) { - throw SonoException("This probe is disconnected"); + throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected."); } if(prbSel == prbC && !vec.at(2)) { - throw SonoException("This probe is disconnected"); + throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected."); } if(prbSel == prbD && !vec.at(3)) { - throw SonoException("This probe is disconnected"); + throw HardwareException(PROBE_SEL_FAILED, "This probe has disconnected."); } romStatus.ConnectionMode = connected; @@ -2512,7 +2510,7 @@ void TrxBoard::setTrxFanRpm(const eFanPwm& fan, const quint8& dutyCyclePercent) { if(dutyCyclePercent > 100) { - throw SonoException("Out of range for fan duty cycle."); + throw HardwareException(FAN_FAULT_DETECTED, "Out of range for fan duty cycle."); } this->_bCtrlMngt->setFanPwm(fan, dutyCyclePercent); @@ -2522,7 +2520,7 @@ void TrxBoard::setRegulatorSyncClk(const eRegSync& regType, const regulatorSync& { if(regSyncParams.halfPeriod > 8192) { - throw SonoException("Out of range for PLL sync clk."); + throw HardwareException(TRX_READ_FAILED, "Out of range for PLL sync clk."); } this->_bCtrlMngt->setPllRefClk(regType, regSyncParams); @@ -2534,12 +2532,12 @@ void TrxBoard::mcsProgram(QString path) if(mcsFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } if(!mcsFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open BPI bin file programming"); + throw HardwareException(TRX_READ_FAILED, "Couldn't open BPI bin file programming."); } QByteArray mcsFileData = mcsFile.readAll(); @@ -2559,12 +2557,12 @@ void TrxBoard::spiFlashProgram(QString path) if(binFile.fileName().isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } if(!binFile.open(QIODevice::ReadOnly)) { - throw SonoException("Couldn't open SPI flash bin file programming"); + throw HardwareException(TRX_READ_FAILED, "Couldn't open SPI flash bin file programming."); } bin = binFile.readAll(); @@ -2583,12 +2581,12 @@ void TrxBoard::spiFlashRead(QString path) if(path.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(TRX_READ_FAILED, "No file has selected."); } if(!binFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open SPI bin file programming"); + throw HardwareException(TRX_READ_FAILED, "Couldn't open SPI bin file programming."); } binArray = this->_spiFlash->readBin(); @@ -2794,12 +2792,12 @@ void TrxBoard::adcLoggerStart(const QString path, const QString fileName) if(logPath.isEmpty()) { - throw SonoException("No file is selected"); + throw HardwareException(AFE_ERROR, "No file has selected."); } if(!logFile.open(QIODevice::WriteOnly)) { - throw SonoException("Couldn't open file for logging"); + throw HardwareException(AFE_ERROR, "Couldn't open file for logging."); } log << "SYNC Offset(ns): "; diff --git a/src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp b/src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp index 877242b..dd111a2 100644 --- a/src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp +++ b/src/model/hardware/core/lowLevelApi/register/boardsCtrlMngt/BoardsCtrlMngt.cpp @@ -54,7 +54,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr, busy = ((status->busy->getValue()) != 0); if(checkTimeout()) { - throw SonoException("Eeprom writing timeout is happened due to the I2C busy"); + throw HardwareException(TRX_READ_FAILED, "The e2prom writing timeout happened due to the I2C busy."); } } @@ -84,7 +84,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr, error = ((status->reqError->getValue()) != 0); if(checkTimeout()) { - throw SonoException("Eeprom writing is corrupted due to the failure to receive done"); + throw HardwareException(TRX_READ_FAILED, "The e2prom writing corrupted due to the failure to receive done."); } } @@ -92,7 +92,7 @@ void BoardsCtrlMngt::eepromWrite(QByteArray& arr, if(error) { - throw SonoException("Eeprom writing is corrupted due to the error occurrence"); + throw HardwareException(TRX_READ_FAILED, "The e2prom writing timeout happened due to the error occurrence."); } } } @@ -139,7 +139,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr, busy = ((status->busy->getValue()) != 0); if(checkTimeout()) { - throw SonoException("Eeprom reading timeout is happened due to the I2C busy"); + throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the I2C busy."); } } @@ -161,7 +161,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr, error = ((status->reqError->getValue()) != 0); if(checkTimeout()) { - throw SonoException("Eeprom reading is corrupted due to the failure to receive done"); + throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the failure to receive done."); } } @@ -169,7 +169,7 @@ QByteArray BoardsCtrlMngt::eepromRead(quint32 addr, if(error) { - throw SonoException("Eeprom reading is corrupted due to the error occurrence"); + throw HardwareException(TRX_READ_FAILED, "The e2prom reading timeout happened due to the error occurrence."); } rdArray.append(static_cast(status->dataOut->getValue())); @@ -413,7 +413,7 @@ void BoardsCtrlMngt::getSupervisorI2cTimeout() const { if(checkTimeout()) { - throw SonoException("Supervisor request timeout is happened due to the MPS I2C busy"); + throw HardwareException(MPS_READ_FAILED, "The supervisor request timeout happened due to the MPS I2C busy."); } } timerStop(); @@ -426,15 +426,14 @@ void BoardsCtrlMngt::getSupervisorI2cDone() const { if(checkTimeout()) { - throw SonoException( - "Supervisor request is corrupted due to the failure to receive MPS I2C done"); + throw HardwareException(MPS_READ_FAILED, "The supervisor request corrupted due to the failure to receive MPS I2C done."); } } timerStop(); if(getI2cCmdErr()) { - throw SonoException("Supervisor request is corrupted due to the MPS I2C error occurrence"); + throw HardwareException(MPS_READ_FAILED, "The supervisor request corrupted due to the MPS I2C error occurrence."); } } @@ -666,7 +665,7 @@ float BoardsCtrlMngt::getMpsTempSensor() const if(temp < 0x4000 || temp > 0xC000) { - throw SonoException("The mps temp adc value is out of range."); + throw HardwareException(MPS_READ_FAILED, "The mps temperature A/D value is out of range."); } quint32 average = 16; @@ -835,7 +834,7 @@ void BoardsCtrlMngt::mpsHvSet(float& hva, float& hvb) const } else { - throw SonoException("The hva must be greater than the hvb."); + throw HardwareException(MPS_HVA_HVB_CWD_ERROR, "The hva value must be greater than the hvb value."); } } @@ -929,7 +928,7 @@ QByteArray BoardsCtrlMngt::trxEepromRead(quint32 address, quint32 length) { if(address + length > TRX_ROM_MAX_LEN) { - throw SonoException("Out of range reading from TRX eeprom "); + throw HardwareException(TRX_READ_FAILED, "Out of range reading from TRX e2prom."); } quint8 prbSel = 0; @@ -945,7 +944,7 @@ QByteArray BoardsCtrlMngt::mpsEepromRead(quint32 address, quint32 length) { if(address + length > MPS_ROM_MAX_LEN) { - throw SonoException("Out of range reading from MPS eeprom "); + throw HardwareException(MPS_READ_FAILED, "Out of range reading from MPS e2prom."); } quint8 prbSel = 0; @@ -961,7 +960,7 @@ QByteArray BoardsCtrlMngt::prbCtrlEepromRead(quint32 address, quint32 length) { if(address + length > PRB_CTRL_ROM_MAX_LEN) { - throw SonoException("Out of range reading from Probe Control eeprom "); + throw HardwareException(RELAY_READ_FAILED, "Out of range reading from probe control e2prom."); } quint8 prbSel = 0; @@ -977,7 +976,7 @@ QByteArray BoardsCtrlMngt::prbEepromRead(quint32 address, quint32 length, quint8 { if(address + length > PRB_ROM_MAX_LEN) { - throw SonoException("Out of range reading from Probe eeprom "); + throw HardwareException(PROBE_READ_FAILED, "Out of range reading from probe e2prom."); } return eepromRead(address, @@ -991,7 +990,7 @@ void trxEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards) { if(address + static_cast(arr.size()) > TRX_ROM_MAX_LEN) { - throw SonoException("Out of range writing into TRX eeprom "); + throw HardwareException(TRX_READ_FAILED, "Out of range writing into TRX e2prom."); } quint8 prbSel = 0; @@ -1006,7 +1005,7 @@ void mpsEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards) { if(address + static_cast(arr.size()) > MPS_ROM_MAX_LEN) { - throw SonoException("Out of range writing into MPS eeprom "); + throw HardwareException(MPS_READ_FAILED, "Out of range writing into MPS e2prom."); } quint8 prbSel = 0; @@ -1021,7 +1020,7 @@ void prbCtrlEepromWrite(QByteArray arr, quint32 address, BoardsCtrlMngt* boards) { if(address + static_cast(arr.size()) > PRB_CTRL_ROM_MAX_LEN) { - throw SonoException("Out of range writing into Probe Control eeprom "); + throw HardwareException(RELAY_READ_FAILED, "Out of range writing into probe control e2prom."); } quint8 prbSel = 0; @@ -1036,7 +1035,7 @@ void prbEepromWrite(QByteArray arr, quint32 address, quint8 prbSel, BoardsCtrlMn { if(address + static_cast(arr.size()) > PRB_ROM_MAX_LEN) { - throw SonoException("Out of range writing into Probe eeprom "); + throw HardwareException(PROBE_READ_FAILED, "Out of range writing into probe e2prom."); } boards->eepromWrite(arr, diff --git a/src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp b/src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp index 4d405f2..46c118e 100644 --- a/src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp +++ b/src/model/hardware/core/lowLevelApi/register/bpiFlash/BpiFlash.cpp @@ -42,7 +42,7 @@ void BpiFlash::bpiClearStatus() const statusReg &= 0xFF; if (statusReg != BPI_NO_ERR_STATUS) { - throw SonoException("The bpi clear status error is happened."); + throw HardwareException(TRX_READ_FAILED, "The bpi clear error happened."); } } @@ -79,7 +79,7 @@ void BpiFlash::bpiUnlock(quint16& blockOffset) #else if(checkTimeout()) { - throw SonoException("The bpi unlock error is happened."); + throw HardwareException(TRX_READ_FAILED, "The bpi unlock error happened."); } #endif @@ -126,7 +126,7 @@ void BpiFlash::bpiErase(quint16& blockOffset) #else if(checkTimeout()) { - throw SonoException("The bpi erase error is happened."); + throw HardwareException(TRX_READ_FAILED, "The bpi erase error happened."); } #endif @@ -157,7 +157,7 @@ void BpiFlash::bpiWrite(quint16& wrCount) statusReg &= 0xFF; if (statusReg != BPI_NO_ERR_STATUS) { - throw SonoException("the bpi write command error is happened."); + throw HardwareException(TRX_READ_FAILED, "The bpi write command error happened."); } this->_device->device.writeShort(BAR_SRAM, BPI_START_OFFSET + @@ -193,7 +193,7 @@ void BpiFlash::bpiWriteCmplt(quint16& num) #else if(checkTimeout()) { - throw SonoException("The bpi write complete command error is happened."); + throw HardwareException(TRX_READ_FAILED, "The bpi write complete command error happened."); } #endif diff --git a/src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp b/src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp index 7f11e6c..7ad5dc5 100644 --- a/src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp +++ b/src/model/hardware/core/lowLevelApi/register/builtInTest/BuiltInTest.cpp @@ -50,7 +50,7 @@ void BuiltInTest::biteDacMemoryWrite(const QByteArray& iData, const QByteArray& { this->_dacMemory->setTxDacMemory(iData, qData); if (iData.size() != qData.size()) - throw SonoException ("Unmatching The size of txDacI & txDacQ is happened."); + throw HardwareException(BITE_FAILED, "TX-DAC I and TX-DAC Q sizes didn't match."); this->_dacMemory->updateArray(true, static_cast(iData.size())); } diff --git a/src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp b/src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp index f3a7745..7cf6cd7 100644 --- a/src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp +++ b/src/model/hardware/core/lowLevelApi/register/clockDistributer/ClockDistributer.cpp @@ -37,7 +37,7 @@ ClockDistributer::~ClockDistributer() void ClockDistributer::clockMode(quint32 clkDiv, eClkMode mode) { if (!connectionCheck()) - throw SonoException("Clock modifing is failed due to the disconnect of the clock distributer"); + throw HardwareException(TRX_READ_FAILED, "Clock modifying failed due to connection problem to the clock distributer."); while (!_cwModeStatus.getEepromClkDistDone()); while (_cwModeStatus.getSpiClkDistBusy()); diff --git a/src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp b/src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp index bccf3f8..f087c8e 100644 --- a/src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp +++ b/src/model/hardware/core/lowLevelApi/register/fpgaProgram/FpgaProgram.cpp @@ -46,13 +46,12 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number) if(_status->getInitFail()) { - throw SonoException("init fail happened"); + throw HardwareException(SLAVE_PROG_FAILED, "Slave programming initialize failed."); } if(_status->getProgramTimeout()) { - throw SonoException( - "Timeout is happened and the programming of the slave FPGAs is failed"); - } + throw HardwareException(SLAVE_PROG_FAILED, "Slave programming timeout happened."); + } temp.clear(); progByte += sizeof(quint32); @@ -62,7 +61,7 @@ void FpgaProgram::program(QByteArray& bitFileData, quint8 number) if(_status->getProgramFail()) { - throw SonoException("programming was not successful"); + throw HardwareException(SLAVE_PROG_FAILED, "Slave programming was not successful."); } } diff --git a/src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp b/src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp index f5f94a9..8b00dbe 100644 --- a/src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp +++ b/src/model/hardware/core/lowLevelApi/register/spiFlash/SpiFlash.cpp @@ -104,7 +104,7 @@ void SpiFlash::spiCheckPartNumber() { if(statusRegister.at(i) != flashID.at(i)) { - throw SonoException("The spi part number matching failed."); + throw HardwareException(TRX_READ_FAILED, "The spi part number matching failed."); } } } @@ -150,7 +150,7 @@ void SpiFlash::spiWaitForReady(qint32 ms) #else if(checkTimeout()) { - throw SonoException("The spi wait for busy is timeouted."); + throw HardwareException(TRX_READ_FAILED, "The spi wait for busy has timeouted."); } #endif }while(statusRegister[1] & 0x1); @@ -480,7 +480,7 @@ void SpiFlash::writeBin(QByteArray& bin, eSpiFlashMode writeMode) break; } } - catch(SonoException& e) + catch(HardwareException& e) { qDebug() << e.what(); }